SpringBoot启动报错:无法确定嵌入式数据库驱动类,请问数据库类型为NONE时该如何处理?
- 内容介绍
- 文章标签
- 相关推荐
本文共计96个文字,预计阅读时间需要1分钟。
SpringBoot启动报错:Cannot determine embedded database driver class for database type NONE
SpringBoot启动时会自动注入数据源和配置JPA,解决方法:检查数据源配置。
SpringBoot启动报错CannotdetermineembeddeddatabasedriverclassfordatabasetypeNONESpringSpringBoot启动报错Cannot determine embedded database driver class for database type NONE
SpringBoot启动时会自动注入数据源和配置JPA
解决方法
在 Application.properties 文件内配置数据源即可。代码如下
spring.datasource.driver-class-namecom.mysql.jdbc.Driverspring.datasource.urljdbc:mysql://localhost:3306/test?characterEncodingutf-8falsespring.datasource.usernamerootspring.datasource.passwordroot
本文共计96个文字,预计阅读时间需要1分钟。
SpringBoot启动报错:Cannot determine embedded database driver class for database type NONE
SpringBoot启动时会自动注入数据源和配置JPA,解决方法:检查数据源配置。
SpringBoot启动报错CannotdetermineembeddeddatabasedriverclassfordatabasetypeNONESpringSpringBoot启动报错Cannot determine embedded database driver class for database type NONE
SpringBoot启动时会自动注入数据源和配置JPA
解决方法
在 Application.properties 文件内配置数据源即可。代码如下
spring.datasource.driver-class-namecom.mysql.jdbc.Driverspring.datasource.urljdbc:mysql://localhost:3306/test?characterEncodingutf-8falsespring.datasource.usernamerootspring.datasource.passwordroot

