SpringBoot项目启动报错问题

旧城等待, 2021-09-23 08:52 697阅读 0赞

1、问题背景:

在整合查询hbase接口和前端时,前端项目使用了公司封装的基础类库,其中包括了数据库驱动,而本项目没有用到数据库,导致启动报错:

  1. Description:
  2. Cannot determine embedded database driver class for database type NONE
  3. Action:
  4. 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 (the profiles "dev" are currently active).
  5. Process finished with exit code 0

2、解决办法1:

使用启动类增加排除依赖

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

3、解决办法2:

pom中增加依赖

  1. <dependency>
  2. <groupId>com.h2database</groupId>
  3. <artifactId>h2</artifactId>
  4. <scope>runtime</scope>
  5. </dependency>

发表评论

表情:
评论列表 (有 0 条评论,697人围观)

还没有评论,来说两句吧...

相关阅读