Nacos配置中心报错’url’ attribute is not specified and no embedded datasource could be configured

编程入门 行业动态 更新时间:2024-10-20 05:46:20

使用nacos配置中心时候:
bootstrap.properties如下:

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

原因:nacos和cloud版本问题,新版的SpringCloud默认没有安装bootstrap依赖,因此不能读取项目bootstrap.yml文件内容,间接导致不能读取Nacos配置内容引发的读取不到数据库url报错
解决方法:添加依赖spring-cloud-starter-bootstrap

 <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-bootstrap</artifactId>
            <version>3.1.2</version>
 </dependency>

其中版本要根据nacos和cloud来确定
启动成功:

参考链接:2021新版本Nacos配置中心提示‘url‘ attribute is not specified and no embedded datasource could be configured

更多推荐

Nacos配置中心报错’url’ attribute is not specified and no embedded datasource could be

本文发布于:2023-06-13 21:51:00,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1410142.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:报错   中心   url   Nacos   datasource

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!