摘要:添加應(yīng)用啟動(dòng)類單點(diǎn)手動(dòng)動(dòng)態(tài)刷新配置。配置客戶端服務(wù)想要實(shí)現(xiàn)自動(dòng)刷新配置的話,一端是不要做任何處理,只需要在一端處理即可。
SpringCloud(第 036 篇)單點(diǎn)手動(dòng)動(dòng)態(tài)刷新ConfigClient配置
-
一、大致介紹1、當(dāng)ConfigServer啟動(dòng)后,假如我們新增配置內(nèi)容的話,是不是要重新啟動(dòng)一下ConfigServer呢? 2、答案肯定是不需要重新啟動(dòng)的,因?yàn)?SpringCloud 給我們提供了一個(gè)刷新的觸發(fā)機(jī)制,這樣便可以在不重新的情況下重新加載最新配置文件內(nèi)容; 3、這里還順便列舉下配置路徑的規(guī)則: /**************************************************************************************** * 配置服務(wù)的路勁規(guī)則: * * /{application}/{profile}[/{label}] * /{application}-{profile}.yml * /{label}/{application}-{profile}.yml * /{application}-{profile}.properties * /{label}/{application}-{profile}.properties ****************************************************************************************/二、實(shí)現(xiàn)步驟 2.1 添加 maven 引用包
2.2 添加應(yīng)用配置文件(springms-config-client-refresh/src/main/resources/application.yml)4.0.0 springms-config-client-refresh 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 org.springframework.boot spring-boot-starter-actuator
server: port: 8295 ##################################################################################################### # 配置服務(wù)客戶端Client應(yīng)用入口(正常測(cè)試 ConfigClient ) # profile: profile-dev ##################################################################################################### ##################################################################################################### # 配置服務(wù)客戶端Client應(yīng)用入口(鏈接 ClientServer 測(cè)試,同時(shí)本地也有一份配置文件,那么該如何抉擇呢?) # profile: profile-local-dev #####################################################################################################2.3 添加 bootstrap.yml 應(yīng)用配置文件(springms-config-client-refresh/src/main/resources/bootstrap.yml)
##################################################################################################### # 配置服務(wù)客戶端Client應(yīng)用入口(鏈接 ClientServer 測(cè)試) spring: cloud: config: uri: http://localhost:8220 profile: refresh label: master #當(dāng) ConfigServer 的后端存儲(chǔ)的是 Git 的時(shí)候,默認(rèn)就是 master application: name: foobar #取 foobar-refresh.yml 這個(gè)文件的 application 名字,即為 foobar 名稱 #####################################################################################################2.4 添加Web控制層類(springms-config-client-refresh/src/main/java/com/springms/cloud/controller/ConfigClientRefreshController.java)
package com.springms.cloud.controller; import org.springframework.beans.factory.annotation.Value; import org.springframework.cloud.context.config.annotation.RefreshScope; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; /** * 配置客戶端Controller。 * * @author hmilyylimh * * @version 0.0.1 * * @date 17/10/18 * */ @RestController @RefreshScope public class ConfigClientRefreshController { @Value("${profile}") private String profile; @GetMapping("/profile") public String getProfile(){ return this.profile; } }2.5 添加應(yīng)用啟動(dòng)類(springms-config-client-refresh/src/main/java/com/springms/cloud/MsConfigClientRefreshApplication.java)
package com.springms.cloud; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; /** * 單點(diǎn)手動(dòng)動(dòng)態(tài)刷新ConfigClient配置。三、測(cè)試
* * ConfigClient 配置客戶端服務(wù)想要實(shí)現(xiàn)自動(dòng)刷新配置的話,ConfigServer 一端是不要做任何處理,只需要在 ConfigClient 一端處理即可。 * * @author hmilyylimh * * @version 0.0.1 * * @date 17/10/18 * */ @SpringBootApplication public class MsConfigClientRefreshApplication { public static void main(String[] args) { SpringApplication.run(MsConfigClientRefreshApplication.class, args); System.out.println("【【【【【【 ConfigClientRefresh微服務(wù) 】】】】】】已啟動(dòng)."); } }
/**************************************************************************************** application.yml 涉及到的鏈接文件內(nèi)容展示如下: 修改內(nèi)容前: http://git.oschina.net/ylimhhmily/OpenSource_CustomCircleLineProgressBar/blob/master/foobar-refresh.yml profile: profile-refresh 修改內(nèi)容后: http://git.oschina.net/ylimhhmily/OpenSource_CustomCircleLineProgressBar/blob/master/foobar-refresh.yml profile: profile-refresh-refresh ****************************************************************************************/ /**************************************************************************************** 一、配置刷新服務(wù)客戶端Client應(yīng)用入口(單點(diǎn)手動(dòng)動(dòng)態(tài)刷新配置服務(wù)客戶端配置): 1、添加注解 RefreshScope,然后添加引用模塊 spring-boot-starter-actuator 監(jiān)控和管理生產(chǎn)環(huán)境的模塊; 2、編輯 application.yml 文件,添加相關(guān)客戶端配置; spring: cloud: config: uri: http://localhost:8220 profile: refresh label: master #當(dāng) ConfigServer 的后端存儲(chǔ)的是 Git 的時(shí)候,默認(rèn)就是 master application: name: foobar #取 foobar-refresh.yml 這個(gè)文件的 application 名字,即為 foobar 名稱 3、啟動(dòng) springms-config-server 模塊服務(wù),啟動(dòng)1個(gè)端口; 4、啟動(dòng) springms-config-client-refresh 模塊服務(wù),啟動(dòng)1個(gè)端口; 5、在瀏覽器輸入地址 http://localhost:8295/profile 正常情況下會(huì)輸出遠(yuǎn)端服務(wù)的配置內(nèi)容(內(nèi)容為:profile: profile-refresh); 6、修改 http://git.oschina.net/ylimhhmily/OpenSource_CustomCircleLineProgressBar/blob/master/foobar-refresh.yml 內(nèi)容,修改后為 profile: profile-refresh-refresh; 7、打開windows命令窗口,執(zhí)行命令: >curl.exe -X POST http://localhost:8295/refresh 8、然后刷新 http://localhost:8295/profile 網(wǎng)頁(yè),正常情況下會(huì)輸出遠(yuǎn)端服務(wù)的配置內(nèi)容(內(nèi)容為:profile: profile-refresh-refresh); 總結(jié):這里通過(guò)執(zhí)行刷新命令才得以將遠(yuǎn)端配置內(nèi)容刷新到配置服務(wù)客戶端。 ****************************************************************************************/四、下載地址
https://git.oschina.net/ylimhhmily/SpringCloudTutorial.git
SpringCloudTutorial交流QQ群: 235322432
SpringCloudTutorial交流微信群: 微信溝通群二維碼圖片鏈接
歡迎關(guān)注,您的肯定是對(duì)我最大的支持!!!
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/67805.html
摘要:添加應(yīng)用啟動(dòng)類通過(guò)半自動(dòng)刷新配置。配置客戶端服務(wù)想要實(shí)現(xiàn)自動(dòng)刷新配置的話,一端是不要做任何處理,只需要在一端處理即可。 SpringCloud(第 037 篇)通過(guò)bus/refresh半自動(dòng)刷新ConfigClient配置 - 一、大致介紹 1、上章節(jié)我們講到了手動(dòng)刷新配置,但是我們假設(shè)如果微服務(wù)一多的話,那么我們是不是需要對(duì)每臺(tái)服務(wù)進(jìn)行手動(dòng)刷新呢? 2、答案肯定是不需要的,我們也可...
SpringCloud(第 029 篇)配置客戶端 ConfigClient 接入配置服務(wù)端 - 一、大致介紹 1、有配置服務(wù)端,那么勢(shì)必就會(huì)有與之對(duì)應(yīng)的客戶端,SpringCloud 文檔中集成也非常簡(jiǎn)單; 2、但是這里有點(diǎn)需要注意,就是 bootstrap 配置文件,官方建議我們?cè)赽ootstrap中放置不更改的屬性,我們同樣也需要在這里做一些簡(jiǎn)單不易于改變的配置; 3、這里還順便列舉下配置...
摘要:添加應(yīng)用啟動(dòng)類配置客戶端鏈接經(jīng)過(guò)對(duì)稱加解密的配置微服務(wù)專門為測(cè)試經(jīng)過(guò)對(duì)稱加解密的配置微服務(wù)微服務(wù)模塊。 SpringCloud(第 031 篇)配置客戶端ConfigClient鏈接經(jīng)過(guò)對(duì)稱加解密的配置微服務(wù) - 一、大致介紹 1、Git服務(wù)端的文件內(nèi)容進(jìn)行了加密處理,那么是不是配置客戶端拿到內(nèi)容之后需要解密呢? 2、答案顯然不是的,因?yàn)檫@樣解密的話,先不說(shuō)實(shí)現(xiàn)起來(lái)的難易程度,單從表面...
SpringCloud(第 035 篇)配置服務(wù)客戶端ConfigClient鏈接經(jīng)過(guò)認(rèn)證的配置服務(wù)端 - 一、大致介紹 1、前面一章節(jié)講解了服務(wù)端配置安全認(rèn)證,那么本章節(jié)就講解如何鏈接上服務(wù)端的認(rèn)證; 2、這里還順便列舉下配置路徑的規(guī)則: /*****************************************************************************...
SpringCloud(第 033 篇)配置客戶端ConfigClient鏈接經(jīng)過(guò)對(duì)稱加解密的配置微服務(wù) - 一、大致介紹 1、在(第 031 篇)講解了如何鏈接對(duì)稱加密的配置服務(wù)端,而鏈接對(duì)稱非對(duì)稱加密的配置微服務(wù)也是同樣的; 2、配置客戶端不需要做什么加解密的配置,加解密的配置在服務(wù)端做就好了; 3、這里還順便列舉下配置路徑的規(guī)則: /****************************...
閱讀 1210·2021-11-10 11:35
閱讀 2952·2021-09-24 10:35
閱讀 2976·2021-09-22 15:38
閱讀 2815·2019-08-30 15:43
閱讀 1349·2019-08-29 18:39
閱讀 2592·2019-08-29 15:22
閱讀 2802·2019-08-28 18:17
閱讀 619·2019-08-26 13:37