springboot启动时报错Cannot determine embedded database driver class for database type NONE解决办法

Posted 家有小壮壮、

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot启动时报错Cannot determine embedded database driver class for database type NONE解决办法相关的知识,希望对你有一定的参考价值。

 

 springboot启动报错如下图:

 

 

 

出错原因:springboot启动时会自动注入数据源及配置jpa

解决办法:

1,在pom文件中加h2引用

 

<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>

 

 

 2.在启动类上加上

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

 

 3,以上解决办法只是针对该springboot应用不与数据库之间有交互的场景下,使用,

若应用与数据库有交互,那么@SpringBootApplication(exclude={DataSourceAutoConfiguration.class,HibernateJpaAutoConfiguration.class}) 是不能用的!!!!!

 

以上是关于springboot启动时报错Cannot determine embedded database driver class for database type NONE解决办法的主要内容,如果未能解决你的问题,请参考以下文章

Kettle启动时报错Cannot create java virtual machine & A java exception has occurred

『ORACLE』修改归档时报错:instance recovery required, cannot set ARCHIVELOG mode

springMVC 注解 启动时报错

CXF集成spring启动时报错,大家帮忙看一下。

启动springboot项目时报错:Failed to configure a DataSource: ‘url‘ attribute is not specified and no embedded

springboot启动时报错 错误: 找不到或无法加载主类 com.xxx.xxx.Application