Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could
问题描述:
springboot版本 2.1.1
pom.xml配置
application.properties
在配置数据连接的时候报如下错误:
> Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could
这是因为引入的spring-boot-starter-jdbc但是没有配置spring.datasource.url等信息报错的。(在我的application.properties中采用的hikari作为数据库连接)
解决办法:
第一种:
将配置信息改为:
第二种:(去掉DataSourceAutoConfiguration的自动配置)
微信公众号