报错信息:
Caused by: org.springframework.boot.autoconfigure.jdbc.DataSourceProperties$DataSourceBeanCreationException: Failed to determine a suitable driver
错误原因:
@Configuration注解向spring注入了dataSource bean。因为工程中没有关于dataSource相关的配置信息,当spring创建dataSource bean因缺少相关的信息就会报错。
解决方案:
在Spring boot的启动引导类上为注解增加条件@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class}),阻止Spring boot自动注入dataSource