Spring Boot:The Bean Validation API is on the classpath but no implementation could be found https://blog.csdn.net/u012903926/article/details/79291739…
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. 原因: springboot启动时会自动注入数据源和配置jpa 解决: 在@SpringBootApplication中排除其注入 exclude={DataSourceAutoConfiguration.class,HibernateJpaAutoConfigurat…