Spring Boot启动问题:Cannot determine embedded database driver class for database type NONE

Description:

Cannot determine embedded database driver class for database type NONE

在搭建项目阶段数据未配置好请勿添加以下依赖

        <!--jdbc -->
<dependency>
<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-jdbc</artifactId>

             </dependency> 

<!-- Spring Boot Mybatis 依赖 -->
  <dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>1.2.0</version>
</dependency>

猜你喜欢

转载自blog.csdn.net/niugang0920/article/details/80835078