本文主要是介绍Cannot determine embedded database driver class for database type NONE,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
spring boot 和 Mybatis 结合,启动时报如题问题
在此为大家提供一点我的改 bug 经验。
Cannot determine embedded database driver class for database type NONE
一开始所有配置都配完,出现了 如上问题,看起来似乎是找不到数据库的驱动,但是这个问题太模糊,此时应该将 application.properties/yml 的 debug 选项开启,观察 debug 问题具体出现在哪。org.springframework.boot.autoconfigure.jdbc.DataSourceProperties$DataSourceBeanCreationException
开启了 debug,重新 run,发现了具体问题,”DataSource创建有问题”,找不到 DataSource,明明在 application 配置文件中已经配置了,porm 中的依赖也没有问题,那么就一定是你的文件架构出现问题了——框架在默认文件结构路径下,根本找不到 application 配置文件。解决方案
在 porm.xml 文件中重新设定文件架构<resource><directory>src/main/resources</directory><includes><include>**/*</include></includes></resource>
这篇关于Cannot determine embedded database driver class for database type NONE的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!