作者:tantyana428_673 | 来源:互联网 | 2023-09-14 17:41
本文由编程笔记#小编为大家整理,主要介绍了报错CannotdetermineembeddeddatabasedriverclassfordatabasetypeNONE解决方法相关的
本文由编程笔记#小编为大家整理,主要介绍了报错Cannot determine embedded database driver class for database type NONE解决方法相关的知识,希望对你有一定的参考价值。
由于我不需要数据库,启动springboot报错:
Cannot determine embedded database driver class for database type NONE
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).
删掉pom里全部相关数据库的jar,也exclude相关DataSource的class,都不能解决,报错依旧。最后:
pom增加:
com.h2database
h2
完整的:
org.springframework.boot
spring-boot-starter-web
org.springframework.cloud
spring-cloud-starter-config
org.springframework.cloud
spring-cloud-starter-eureka
com.h2database
h2
注意:参考了以下网址方法,但并不能解决问题。
https://blog.csdn.net/hengyunabc/article/details/78762097