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})
上一篇: python 排列组合
下一篇: python 排列组合