SpringCloud(第 029 篇)配置客戶端 ConfigClient 接入配置服務端
-
一、大致介紹1、有配置服務端,那么勢必就會有與之對應的客戶端,SpringCloud 文檔中集成也非常簡單; 2、但是這里有點需要注意,就是 bootstrap 配置文件,官方建議我們在bootstrap中放置不更改的屬性,我們同樣也需要在這里做一些簡單不易于改變的配置; 3、這里還順便列舉下配置路徑的規則: /**************************************************************************************** * 配置服務的路勁規則: * * /{application}/{profile}[/{label}] * /{application}-{profile}.yml * /{label}/{application}-{profile}.yml * /{application}-{profile}.properties * /{label}/{application}-{profile}.properties ****************************************************************************************/二、實現步驟 2.1 添加 maven 引用包
2.2 添加應用配置文件(springms-config-clientsrcmainresourcesapplication.yml)4.0.0 springms-config-client 1.0-SNAPSHOT jar com.springms.cloud springms-spring-cloud 1.0-SNAPSHOT org.springframework.cloud spring-cloud-starter-config org.springframework.boot spring-boot-starter-web
server: port: 8225 ##################################################################################################### # 測試一:配置服務客戶端Client應用入口(正常測試 ConfigClient ) profile: profile-dev(local) ##################################################################################################### ##################################################################################################### # 測試二:配置服務客戶端Client應用入口(鏈接 ClientServer 測試) #spring: # cloud: # config: # uri: http://localhost:8220 # profile: dev # label: master #當 ConfigServer 的后端存儲的是 Git 的時候,默認就是 master # # application: # name: foobar #取 foobar-dev.yml 這個文件的 application 名字,即為 foobar 名稱 ##################################################################################################### ##################################################################################################### # 測試四:配置服務客戶端Client應用入口(鏈接 ClientServer 測試,同時本地也有一份配置文件,那么該如何抉擇呢?) #profile: profile-local-dev #####################################################################################################2.3 添加 bootstrap.yml 應用配置文件(springms-config-clientsrcmainresourcesbootstrap.yml)
##################################################################################################### # 測試三:配置服務客戶端Client應用入口(鏈接 ClientServer 測試) #spring: # cloud: # config: # uri: http://localhost:8220 # profile: dev # label: master #當 ConfigServer 的后端存儲的是 Git 的時候,默認就是 master # # application: # name: foobar #取 foobar-dev.yml 這個文件的 application 名字,即為 foobar 名稱 #####################################################################################################2.4 添加Web控制層類(springms-config-clientsrcmainjavacomspringmscloudcontrollerConfigClientController.java)
package com.springms.cloud.controller; import org.springframework.beans.factory.annotation.Value; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; /** * 配置客戶端Controller。 * * @author hmilyylimh * * @version 0.0.1 * * @date 2017/10/15 * */ @RestController public class ConfigClientController { @Value("${profile}") private String profile; @GetMapping("/profile") public String getProfile(){ return this.profile; } }2.4 添加應用啟動類(springms-config-clientsrcmainjavacomspringmscloudMsConfigClientApplication.java)
package com.springms.cloud; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; /** * 配置客戶端ConfigClient接入配置服務端。三、測試
* * @author hmilyylimh * * @version 0.0.1 * * @date 2017/10/15 * */ @SpringBootApplication public class MsConfigClientApplication { public static void main(String[] args) { SpringApplication.run(MsConfigClientApplication.class, args); System.out.println("【【【【【【 ConfigClient微服務 】】】】】】已啟動."); } }
/**************************************************************************************** 一、配置客戶端ConfigClient接入配置服務端(正常測試 ConfigClient ): 1、注解:pom.xml 先刪除 configclient 的引用模塊,以便測試正常情況 ConfigClientController 接口是否暢通; 2、編輯 application.yml 文件,注意添加 profile: profile-dev(local) 屬性; 3、啟動 springms-config-client 模塊服務,啟動1個端口; 4、在瀏覽器輸入地址 http://localhost:8225/profile 正常情況下會輸出配置文件的內容(內容為:profile-dev(local)); 注意:這里還暫時不需要 bootstrap.yml 配置文件,所以測試一是不需要添加 bootstrap.yml 文件的; ****************************************************************************************/ /**************************************************************************************** 二、配置客戶端ConfigClient接入配置服務端(鏈接 ClientServer 測試遇到挫折): 1、注解:pom.xml 先添加 configclient 的引用模; 2、編輯 application.yml 文件,注意注釋 profile 屬性,然后添加相關客戶端配置; spring: cloud: config: uri: http://localhost:8220 profile: dev label: master #當 ConfigServer 的后端存儲的是 Git 的時候,默認就是 master application: name: foobar #取 foobar-dev.yml 這個文件的 application 名字,即為 foobar 名稱 3、啟動 springms-config-server 模塊服務,啟動1個端口; 4、啟動 springms-config-client 模塊服務,啟動1個端口; 5、然后發現啟動 springms-config-client 模塊出現錯誤,報錯信息為:Fetching config from server at: http://localhost:8888, Could not locate PropertySource: I/O error on GET request for "http://localhost:8888/foobar/dev/master": Connection refused; 6、發現錯誤信息中,為什么鏈接的是遠端的 8888 端口呢?百思不得其解,難道是默認加載的配置 8888 端口??? 7、SpringCloud里面有個“啟動上下文”,主要是用于加載遠端的配置,也就是加載ConfigServer里面的配置,默認加載順序為:加載bootstrap.*里面的配置 --> 鏈接configserver,加載遠程配置 --> 加載application.*里面的配置; 總結:這里需要借助于“啟動上下文”來處理加載遠程配置,請看下面環節測試三。 ****************************************************************************************/ /**************************************************************************************** 三、配置客戶端ConfigClient接入配置服務端(鏈接 ClientServer 測試遇到挫折): 1、注解:pom.xml 先添加 configclient 的引用模; 2、編輯 application.yml 文件,注釋"測試二"的屬性配置; 3、新建一個 bootstrap.yml 文件,將相關客戶端配置挪到 bootstrap.yml 文件即可; 4、啟動 springms-config-server 模塊服務,啟動1個端口; 5、啟動 springms-config-client 模塊服務,啟動1個端口; 6、在瀏覽器輸入地址 http://localhost:8225/profile 正常情況下會輸出配置文件的內容(內容為:profile-dev); 總結:這里成功獲取了遠端配置,并成功打印了屬性值出來,說明添加 bootstrap.yml 配置文件對我們項目的順利進行起到了有效的作用。 ****************************************************************************************/ /**************************************************************************************** 四、配置客戶端ConfigClient接入配置服務端(鏈接 ClientServer 測試,同時本地也有一份配置文件,那么該如何抉擇呢?): 1、在測試三的基礎上,咱們再做點其它配置測試; 2、在 application.yml 文件,再次添加 profile 屬性,看看加載的是本地配置還是遠端配置? 3、停止并重新啟動 springms-config-client 模塊服務,啟動1個端口; 4、在瀏覽器輸入地址 http://localhost:8225/profile 正常情況下會輸出遠端服務的配置內容; 總結:在ConfigServer服務啟動的時候,bootstrap 拿到遠端配置注入到 profile 的屬性中的話,那么就不會再次覆蓋這個屬性了,所以只會選擇遠端配置的內容。 那是不是會有人認為把ConfigServer再重啟一下就行了呢?答案是不行的,因為首選的是遠端配置內容; ****************************************************************************************/四、下載地址
https://gitee.com/ylimhhmily/SpringCloudTutorial.git
SpringCloudTutorial交流QQ群: 235322432
SpringCloudTutorial交流微信群: 微信溝通群二維碼圖片鏈接
歡迎關注,您的肯定是對我最大的支持!!!
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/67769.html
摘要:添加應用啟動類通過半自動刷新配置。配置客戶端服務想要實現自動刷新配置的話,一端是不要做任何處理,只需要在一端處理即可。 SpringCloud(第 037 篇)通過bus/refresh半自動刷新ConfigClient配置 - 一、大致介紹 1、上章節我們講到了手動刷新配置,但是我們假設如果微服務一多的話,那么我們是不是需要對每臺服務進行手動刷新呢? 2、答案肯定是不需要的,我們也可...
摘要:添加應用啟動類單點手動動態刷新配置。配置客戶端服務想要實現自動刷新配置的話,一端是不要做任何處理,只需要在一端處理即可。 SpringCloud(第 036 篇)單點手動動態刷新ConfigClient配置 - 一、大致介紹 1、當ConfigServer啟動后,假如我們新增配置內容的話,是不是要重新啟動一下ConfigServer呢? 2、答案肯定是不需要重新啟動的,因為 Sprin...
SpringCloud(第 035 篇)配置服務客戶端ConfigClient鏈接經過認證的配置服務端 - 一、大致介紹 1、前面一章節講解了服務端配置安全認證,那么本章節就講解如何鏈接上服務端的認證; 2、這里還順便列舉下配置路徑的規則: /*****************************************************************************...
摘要:添加應用啟動類配置客戶端鏈接經過對稱加解密的配置微服務專門為測試經過對稱加解密的配置微服務微服務模塊。 SpringCloud(第 031 篇)配置客戶端ConfigClient鏈接經過對稱加解密的配置微服務 - 一、大致介紹 1、Git服務端的文件內容進行了加密處理,那么是不是配置客戶端拿到內容之后需要解密呢? 2、答案顯然不是的,因為這樣解密的話,先不說實現起來的難易程度,單從表面...
SpringCloud(第 033 篇)配置客戶端ConfigClient鏈接經過對稱加解密的配置微服務 - 一、大致介紹 1、在(第 031 篇)講解了如何鏈接對稱加密的配置服務端,而鏈接對稱非對稱加密的配置微服務也是同樣的; 2、配置客戶端不需要做什么加解密的配置,加解密的配置在服務端做就好了; 3、這里還順便列舉下配置路徑的規則: /****************************...
閱讀 2304·2021-09-28 09:45
閱讀 3595·2021-09-24 09:48
閱讀 2255·2021-09-22 15:49
閱讀 3093·2021-09-08 16:10
閱讀 1585·2019-08-30 15:54
閱讀 2316·2019-08-30 15:53
閱讀 3012·2019-08-29 18:42
閱讀 2863·2019-08-29 16:19