SpringBoot启动报错:Cannot determine embedded database driver class for database type NONE
springboot启动时会自动注入数据源和配置jpa
解决办法一:启动类中加入注解:@SpringBootApplication(exclude={DataSourceAutoConfiguration.class,HibernateJpaAutoConfiguration.class})
原文地址:http://blog.csdn.net/shangquan2012/article/details/74935314点击打开链接
解决方法二:在Application.properties文件内配置数据源即可。代码如下:
spring.datasource.url=jdbc:mysql://localhost:3306/test spring.datasource.username=root spring.datasource.password=123456 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
本文介绍了SpringBoot启动时报Cannot determine embedded database driver class for database type NONE错误的原因及两种解决方法。一是通过排除自动配置的数据源和JPA,二是正确配置Application.properties文件中的数据源。
--启动报错(Cannot determine embedded database driver class for database type NONE)&spm=1001.2101.3001.5002&articleId=78190703&d=1&t=3&u=9387d6ea94a24c3abdb34065c616fb38)
1977

被折叠的 条评论
为什么被折叠?



