org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType
原因:缺少 spring-boot-starter-jdbc
// 导入依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
这里只说了缺少什么,但为什么发生?之前引用过mybaits,因为它引用了jdbc所以项目不报错,偶然间删除mybaits之后就报这个错了!