您好,登錄后才能下訂單哦!
這篇文章主要介紹“springCloud集成nacos啟動時報錯怎么排查”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“springCloud集成nacos啟動時報錯怎么排查”文章能幫助大家解決問題。
今早在集成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
上面的錯誤描述明確的說了是datasource的url讀不到,那么第一反應是去檢查一下是不是配置錯誤了,nacos中配置的文件檢查了datasource的所有屬性沒有問題
??注意:這里可能會踩坑的是mysql的版本在8以下和8以上driver-class-name是不一樣的,8及以上需要在加上cj,還需要在url后面加上時區,這里我檢查了一下我的mysql是8.0
既然排除了我的數據庫配置沒問題,那么就需要檢查一下我的項目是否能拉到nacos的配置
對比如下,仔細檢查后配置沒有問題
在出問題的時候查閱了多方資料,都忽略了這個,因為檢查了自己的pom包里面已經有了spring-cloud-starter的依賴,就沒有考慮過加bootstrap的依賴,最后實在解決不了我的錯,就報著試一下的心態去加了下面的依賴,好了!
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-bootstrap</artifactId> </dependency>
我在項目中新加了一個bootstrap.yml,在這之前我只了解到bootstarp.yml的加載優先級比bootstrap.properties更高,但是springboot項目中如果沒有spring-cloud-context或者spring-cloud-starter-bootstrap的依賴的話是不會去讀取bootstrap.properties的,只會去讀application.properties,
spring boot 2.4版本以下加
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-context</artifactId> </dependency>
spring boot 2.4版本以上加
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-bootstrap</artifactId> </dependency>
關于“springCloud集成nacos啟動時報錯怎么排查”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。