Failed to configure a DataSource: ‘url‘ attribute is not specified and no embedded datasource could
1.问题描述
在学习springcloud课程中,在连接Nacos配置中心时,把配置文件上传到Nacos后,启动项目报错,springboot项目报错为:Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.
Reason: Failed to determine a suitable driver class
仔细检查配置文件后发现没有任何配置问题
报错内容为:配置数据源失败:没有指定'url'属性,无法配置任何嵌入的数据源。
2.问题分析
这里我使用的cloud版本是2021.0.5,Nacos版本是2021.1.0
报错原因是新版的SpringCloud默认没有安装bootstrap依赖,因此不能读取项目bootstrap.yml文件内容,间接导致不能读取Nacos配置内容引发的读取不到数据库url报错。
3.问题解决
添加spring-cloud-starter-bootstrap依赖