2021新版本Nacos配置中心提示‘url‘ attribute is not specified and no embedded datasource could be configured
2021新版本Nacos配置中心提示’url’ attribute is not specified and no embedded datasource could be configured1.概述在微服务项目中配置文件都在使用Nacos配置中心管理项目配置文件,随着Nacos、SpringCloud等框架版本的更新,配置上也会有些差别。如果使用旧版本的配置操作新版本就会出现一些新鲜的问题。2
·
2021新版本Nacos配置中心提示’url’ attribute is not specified and no embedded datasource could be configured
1.概述
在微服务项目中配置文件都在使用Nacos配置中心管理项目配置文件,随着Nacos、SpringCloud等框架版本的更新,配置上也会有些差别。如果使用旧版本的配置操作新版本就会出现一些新鲜的问题。
2.问题描述
这次使用新版本的SpringCloud和Nacos搭建配置中心,在启动项目后一直报错
Description:
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
Action:
Consider the following:
If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.
If you have database settings to be loaded from a particular profile you may need to activate it (no profiles are currently active).
Process finished with exit code 1
3.解决问题
我的SpringCloud版本是2021.0.0,Nacos 2021.1
报错原因是新版的SpringCloud默认没有安装bootstrap依赖,因此不能读取项目bootstrap.yml文件内容,间接导致不能读取Nacos配置内容引发的读取不到数据库url报错。
添加依赖spring-cloud-starter-bootstrap
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bootstrap</artifactId>
</dependency>
更多推荐
已为社区贡献5条内容
所有评论(0)