本文主要是介绍SpringBoot启动报错If you want an embedded database please put a supported one on the classpath. If....,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
今天创建了一个SpringBoot项目,然后启动的时候却一直报错,折腾挺久,决定给记录下来
解决方案:
要在启动类的@EnableAutoConfiguration或@SpringBootApplication中添加exclude = DataSourceAutoConfiguration.class,排除这个类的autoconfig,然后再次启动,就可以正常运行了
@SpringBootApplication(exclude = DataSourceAutoConfiguration.class)
这篇关于SpringBoot启动报错If you want an embedded database please put a supported one on the classpath. If....的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!