springboot---没有配置数据库启动报错
Posted C&R
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot---没有配置数据库启动报错相关的知识,希望对你有一定的参考价值。
If you want an embedded database please put a supported one on the classpath. If you have database settings to be loaded from a particular profile you may need to active it (no profiles are currently active).
解决方法:
在spring boot入口方法上加上注解
//禁用spring自动配置数据库
@EnableAutoConfiguration(exclude = DataSourceAutoConfiguration.class)
@EnableAutoConfiguration(exclude = DataSourceAutoConfiguration.class)
以上是关于springboot---没有配置数据库启动报错的主要内容,如果未能解决你的问题,请参考以下文章
Springboot启动报错:Failed to determine a suitable driver class