欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Cannot determine embedded database driver class for database type NONE 异常解决办法

程序员文章站 2024-03-24 13:38:16
...

启动SpringBoot 应用时,报异常:

Description:

Cannot determine embedded database driver class for database type NONE  


如图所示:

Cannot determine embedded database driver class for database type NONE 异常解决办法



解决办法:

在项目application.properties文件中,添加数据源相关配置:

spring.datasource.url=jdbc:mysql://localhost:3306/test
spring.datasource.username=root
spring.datasource.password=ROOT
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.max-idle=10
spring.datasource.max-wait=10000
spring.datasource.min-idle=5
spring.datasource.initial-size=5