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

SpringBoot项目在启动时出现了Cannot determine embedded database driver class for database type NONE 错误

程序员文章站 2022-07-14 09:39:50
...

问题描述:SpringBoot项目在启动时出现了以下错误无法启动

Cannot determine embedded database driver class for database type NONE  

解决办法:

在启动类的@SpringBootApplication中排除其注入

@SpringBootApplication(exclude={DataSourceAutoConfiguration.class,HibernateJpaAutoConfiguration.class})

 

 

相关标签: Spring Boot