出现错误

   Cannot determine embedded database driver class for database type NONE  



pom.xml 里面   添加spring-boot-starter-data-jpa 后运行出错 解决办法
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>

<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>

出现错误

   Cannot determine embedded database driver class for database type NONE  

 

原因是:springboot启动时会自动注入数据源和配置jpa

解决:在@SpringBootApplication中排除其注入

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

   

@SpringBootApplication改为以下
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
import org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration;
@SpringBootApplication(exclude={DataSourceAutoConfiguration.class,HibernateJpaAutoConfiguration.class})

红色的增加代码

pom.xml 里面dependency   添加spring-boot-starter-data-jpa 后运行出错

 

 

出现错误

   Cannot determine embedded database driver class for database type NONE  


 

相关文章:

  • 2021-08-07
  • 2022-12-23
  • 2021-06-29
  • 2021-12-30
  • 2021-07-07
  • 2022-12-23
  • 2022-12-23
  • 2021-11-02
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-03
  • 2022-12-23
  • 2022-01-09
相关资源
相似解决方案