欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

SpringBoot启动失败:Error starting ApplicationContext.

程序员文章站 2022-05-25 11:53:53
...

新建了SpringBoot项目,启动时报以下错误:

Error starting ApplicationContext. To display the auto-configuration report re-run your application with 'debug' enabled.
2017-09-05 09:02:14.985 ERROR 8444 --- [           main] o.s.b.d.LoggingFailureAnalysisReporter   : 


需要在启动类的@EnableAutoConfiguration或@SpringBootApplication中添加exclude = {DataSourceAutoConfiguration.class},排除此类的autoconfig。启动以后就可以正常运行。