Factory method ‘dataSource‘ threw exception; nested exception is org.springframework.boot.autoconfig

  • Post author:
  • Post category:其他

spring boot 启动报错:

Factory method ‘dataSource’ threw exception; nested exception is org.springframework.boot.autoconfigure.jdbc.DataSourceProperties$DataSourceBeanCreationException: Failed to determine a suitable driver class

原因1:未配置数据源

解决方法:
@SpringBootApplication中后面添加exclude = {DataSourceAutoConfiguration.class}

原因2:idea配置问题

解决方法:
1、删除target文件或项目等容易出现,需要重新清理、编译,创建maven
2、在build按钮中重建项目
3、重新启动项目
在这里插入图片描述


版权声明:本文为m0_50919638原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。