您好,登錄后才能下訂單哦!
在上篇中介紹了SpringCloud Config的使用,本篇?jiǎng)t介紹基于SpringCloud(基于SpringBoot2.x,.SpringCloud Finchley版)中的分布式配置中心(SpringCloud Config)的配置刷新和消息總線(RabbitMQ和Kafka)使用教程。
在上一篇中我們介紹了springcloud配置中心的本地使用和Git使用的用法,但是當(dāng)重新修改配置文件提交后,客戶端獲取的仍然是修改前的信息,需要客戶端重啟才可以獲取最新的信息。因此我們需要客戶端能夠動(dòng)態(tài)進(jìn)行更新,幸好springcloud官方已經(jīng)給出方案,所以我們只需要使用就行了。
開(kāi)發(fā)環(huán)境
注:不一定非要用上述的版本,可以根據(jù)情況進(jìn)行相應(yīng)的調(diào)整。需要注意的是SpringBoot2.x以后,jdk的版本必須是1.8以上!
確認(rèn)了開(kāi)發(fā)環(huán)境之后,我們?cè)賮?lái)添加相關(guān)的pom依賴。
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
</dependencies>
服務(wù)端以及注冊(cè)中心這塊配置和代碼和之前springcloud-config配置基本一樣即可。注冊(cè)中心新項(xiàng)目的的名稱(chēng)為springcloud-config-bus-eureka
,服務(wù)端新項(xiàng)目的的名稱(chēng)為springcloud-config-bus-server
。
注冊(cè)中心pom
配置、application.properties
配置和代碼如下:
pom:
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
</dependencies>
application.properties:
spring.application.name=springcloud-config-bus-eureka
server.port=8006
eureka.client.register-with-eureka=false
eureka.client.fetch-registry=false
eureka.client.serviceUrl.defaultZone=http://localhost:${server.port}/eureka/
代碼:
@SpringBootApplication
@EnableEurekaServer
public class ConfigBusEurekaApplication {
public static void main(String[] args) {
SpringApplication.run(ConfigBusEurekaApplication.class, args);
System.out.println("config bus 注冊(cè)中心服務(wù)啟動(dòng)...");
}
}
服務(wù)端pom
配置、application.properties
配置和代碼如下:
pom:
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
</dependencies>
application.properties:
spring.application.name=springcloud-config-server
server.port=9005
eureka.client.serviceUrl.defaultZone=http://localhost:8005/eureka/
spring.cloud.config.server.git.uri = https://github.com/xuwujing/springcloud-study/
spring.cloud.config.server.git.search-paths = /springcloud-config/config-repo
spring.cloud.config.server.git.username =
spring.cloud.config.server.git.password =
代碼:
@EnableDiscoveryClient
@EnableConfigServer
@SpringBootApplication
public class ConfigServerApplication {
public static void main(String[] args) {
SpringApplication.run(ConfigServerApplication.class, args);
System.out.println("配置中心服務(wù)端啟動(dòng)成功!");
}
}
客戶端這邊在之前springcloud-config-client項(xiàng)目中進(jìn)行改造,新項(xiàng)目的的名稱(chēng)為springcloud-config-bus-client
,在pom文件中新增如下配置:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
spring-boot-starter-actuator
表示對(duì)該程序進(jìn)行監(jiān)控,可以通過(guò)http接口得到該程序的各種信息,詳細(xì)的使用可以查看我的這個(gè)項(xiàng)目springboot-actuator,可以在注釋中查詢各種接口的使用。
然后再到配置文件application.properties
中添加如下配置:
management.endpoints.web.exposure.include=refresh
該配置表示暴露刷新的地址為refresh。
注:如果是SpringBoot1.x的版本,那么配置改成management.security.enabled=false
即可。
最后在客戶端的Controller增加一個(gè)@RefreshScope
注解,該注解表示在接到SpringCloud配置中心配置刷新的時(shí)候,自動(dòng)將新的配置更新到該類(lèi)對(duì)應(yīng)的字段中。
@RestController
@RefreshScope
public class ClientController {
@Value("${word}")
private String word;
@RequestMapping("/hello")
public String index(@RequestParam String name) {
return name+","+this.word;
}
}
完成上述的代碼開(kāi)發(fā)后,我們來(lái)進(jìn)行測(cè)試Spring-Config是否可以進(jìn)行配置實(shí)時(shí)更新。
首先依次啟動(dòng)springcloud-config-bus-eureka
、springcloud-config-bus-server
和springcloud-config-bus-client
這三個(gè)項(xiàng)目。其中9005是服務(wù)端springcloud-config-bus-server
的端口,9006是第一個(gè)客戶端springcloud-config-bus-client
的端口。
啟動(dòng)成功之后,在瀏覽器輸入:
http://localhost:9006//hello?name=pancm
界面返回:
pancm,hello world!!
可以正常得到服務(wù)端configtest-pro.properties
的配置信息。
然后在把configtest-pro.properties
的配置更改為:
word=hello
然后我們?cè)贋g覽器輸入:
http://localhost:9006//hello?name=pancm
界面返回:
pancm,hello world!!
可以發(fā)現(xiàn)配置并沒(méi)有實(shí)時(shí)的刷新,查閱官方文檔得知,需要客戶端通過(guò)POST方法觸發(fā)各自的/refresh,所以這里我們就用Postman工具模擬post請(qǐng)求刷新,然后再查看信息。
使用POST請(qǐng)求如下地址:
http://localhost:9006/actuator/refresh
返回:
[
"word"
]
說(shuō)明完成了word配置的刷新,我們?cè)贋g覽器輸入:
http://localhost:9006//hello?name=pancm
界面返回:
pancm,hello
發(fā)現(xiàn)已經(jīng)成功實(shí)現(xiàn)配置刷新了!
示例圖:
上述的示例中,我們客戶端發(fā)現(xiàn)每次獲取最新配置都需要手動(dòng)進(jìn)行刷新,如果少的的話還可以使用,但是多的話就比較繁瑣了,雖然我們可以使用類(lèi)似Github的WebHook的工具。
WebHook是當(dāng)某個(gè)事件發(fā)生時(shí),通過(guò)發(fā)送http post請(qǐng)求的方式來(lái)通知信息接收方。
但是當(dāng)客戶端越來(lái)越多的時(shí)候WebHook已經(jīng)不好使用了,每次新增客戶端都需要更改WebHook會(huì)顯得很麻煩,springcloud官方給出了非常好的解決方案,Spring Cloud Bus
。
Spring cloud bus通過(guò)輕量消息代理連接各個(gè)分布的節(jié)點(diǎn)。這會(huì)用在廣播狀態(tài)的變化(例如配置變化)或者其他的消息指令。Spring bus的一個(gè)核心思想是通過(guò)分布式的啟動(dòng)器對(duì)spring boot應(yīng)用進(jìn)行擴(kuò)展,也可以用來(lái)建立一個(gè)多個(gè)應(yīng)用之間的通信頻道。目前唯一實(shí)現(xiàn)的方式是用AMQP消息代理作為通道,同樣特性的設(shè)置(有些取決于通道的設(shè)置)在更多通道的文檔中。
為什么使用Spring Cloud Bus
就可以解決這個(gè)問(wèn)題了呢?
我們不一定非要透徹的理解其原理才可以知道,我們只需要知道它的實(shí)現(xiàn)步驟,就可以知道了為什么可以解決了。
步驟如下:
這里我也簡(jiǎn)單的畫(huà)了下使用Spring Cloud Bus
之前和之后的流程圖,方便進(jìn)行理解。
不使用Spring Cloud Bus
獲取配置信息流程圖:
使用Spring Cloud Bus
獲取配置信息流程圖:
和上述的環(huán)境一樣即可。
RabbitMQ 的安裝教程可以看我之前寫(xiě)的這篇文章:RabbitMQ的環(huán)境安裝及配置。
Kafka 的安裝教程可以看我之前寫(xiě)的這篇文章:kafka安裝使用教程。
Spring Cloud Bus 主要的使用的MQ主要使用的是,RabbitMQ和Kafka。至于使用的話就可以根據(jù)情況來(lái)進(jìn)行選擇,主要使用的是哪個(gè)MQ就用哪一個(gè)就行了。這里我們就用RabbitMQ作為示例來(lái)進(jìn)行講解,Kafka的使用也差不多,也無(wú)在乎配置更改而已。
首先在springcloud-config-bus-server
服務(wù)端的pom文件添加如下配置:
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bus-amqp</artifactId>
</dependency>
</dependencies>
注: spring-boot-starter-actuator
這個(gè)是必須的,不然是無(wú)法在服務(wù)端進(jìn)行配置刷新請(qǐng)求的。如果是使用的kafka的話,只需將spring-cloud-starter-bus-amqp
改成spring-cloud-starter-bus-kafka
即可。
然后再到配置文件中添加如下配置:
配置信息:
spring.application.name=springcloud-config-bus-server
server.port=9005
eureka.client.serviceUrl.defaultZone=http://localhost:8006/eureka/
spring.cloud.config.server.git.uri = https://github.com/xuwujing/springcloud-study/
spring.cloud.config.server.git.search-paths = /springcloud-config/config-repo
spring.cloud.config.server.git.username =
spring.cloud.config.server.git.password =
management.endpoints.web.exposure.include= bus-refresh
spring.cloud.bus.enabled = true
spring.cloud.bus.trace.enabled = true
spring.rabbitmq.host:127.0.0.1
spring.rabbitmq.port:5672
spring.rabbitmq.username:guest
spring.rabbitmq.password:guest
配置說(shuō)明:
springcloud-config-bus-client
增加的的配置一樣,名稱(chēng)不一樣是為了做區(qū)分。注:如果是kafka的話,添加kafka的配置信息spring.kafka.bootstrap-servers
,填寫(xiě)kafka的地址和端口即可。
服務(wù)端代碼和之前一樣即可,在程序主類(lèi)中,額外添加@EnableConfigServer
注解,該注解表示啟用config配置中心功能。代碼如下:
@EnableDiscoveryClient
@EnableConfigServer
@SpringBootApplication
public class ConfigServerApplication {
public static void main(String[] args) {
SpringApplication.run(ConfigServerApplication.class, args);
System.out.println("配置中心服務(wù)端啟動(dòng)成功!");
}
}
完成上述代碼之后,我們的配置中心服務(wù)端已經(jīng)構(gòu)建完成了。
注冊(cè)中心和之前保持一致就可以了。
客戶端這邊的變動(dòng)基本不大,增加一個(gè)rabbitmq的jar包和相應(yīng)的配置文件即可。
在springcloud-config-bus-clinet
的pom文件添加如下配置:
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bus-amqp</artifactId>
</dependency>
</dependencies>
bootstrap.properties
文件的配置信息和之前的基本一樣,完整的配置如下:
配置信息:
spring.cloud.config.name=configtest
spring.cloud.config.profile=pro
spring.cloud.config.label=master
spring.cloud.config.discovery.enabled=true
spring.cloud.config.discovery.serviceId=springcloud-config-bus-server
eureka.client.serviceUrl.defaultZone=http://localhost:8006/eureka/
配置說(shuō)明:
注:上面這些與spring-cloud相關(guān)的屬性必須配置在bootstrap.properties中,config部分內(nèi)容才能被正確加載。因?yàn)閎ootstrap.properties的相關(guān)配置會(huì)先于application.properties,而bootstrap.properties的加載也是先于application.properties。需要注意的是eureka.client.serviceUrl.defaultZone
要配置在bootstrap.properties,不然客戶端是無(wú)法獲取配置中心參數(shù)的,會(huì)啟動(dòng)失??!
application.properties
配置文件新增的配置基本和服務(wù)端的一樣,完整的配置如下:
spring.application.name=springcloud-config-bus-client
server.port=9006
management.endpoints.web.exposure.include=refresh
spring.cloud.config.failFast=true
spring.cloud.bus.trace.enabled = true
spring.rabbitmq.host:127.0.0.1
spring.rabbitmq.port:5672
spring.rabbitmq.username:guest
spring.rabbitmq.password:guest
配置說(shuō)明:
程序主類(lèi)代碼,和之前的基本一致。代碼如下:
主程序代碼示例:
@EnableDiscoveryClient
@SpringBootApplication
public class ConfigClientApplication {
public static void main(String[] args) {
SpringApplication.run(ConfigClientApplication.class, args);
System.out.println("配置中心客戶端啟動(dòng)成功!");
}
}
控制層代碼:
@RestController
@RefreshScope
public class ClientController {
@Value("${word}")
private String word;
@RequestMapping("/hello")
public String index(@RequestParam String name) {
return name+","+this.word;
}
}
完成上述的項(xiàng)目開(kāi)發(fā)之后,我們把上面的項(xiàng)目復(fù)制一下,項(xiàng)目名稱(chēng)為springcloud-config-bus-client2
,然后把它的端口改為9007即可。
到此,客戶端的項(xiàng)目也就構(gòu)建完成了。
完成如上的工程開(kāi)發(fā)之后,我們來(lái)進(jìn)行測(cè)試。
我們首先啟動(dòng)RabbitMQ服務(wù),然后再依次啟動(dòng)springcloud-config-bus-eureka
、springcloud-config-bus-server
、springcloud-config-bus-client
和springcloud-config-bus-client2
這四個(gè)項(xiàng)目。其中9005是服務(wù)端springcloud-config-bus-server
的端口,9006是第一個(gè)客戶端springcloud-config-bus-client
的端口,9007是是第二個(gè)客戶端springcloud-config-bus-client2
的端口。
啟動(dòng)成功之后,在瀏覽器輸入:
http://localhost:9006//hello?name=pancm
界面返回:
pancm,hello
在瀏覽器輸入:
http://localhost:9007//hello?name=xuwujing
界面返回:
xuwujing,hello
可以正常得到服務(wù)端configtest-pro.properties
的配置信息。
然后在把configtest-pro.properties
的配置更改為:
word=hello!!
然后在使用Postman工具進(jìn)行發(fā)起POST請(qǐng)求,只不過(guò)這次的地址是服務(wù)端的地址和端口。
使用POST請(qǐng)求如下地址:
http://localhost:9005/actuator/bus-refresh
然后我們?cè)贋g覽器輸入:
http://localhost:9006//hello?name=pancm
界面返回:
pancm,hello!!
瀏覽器輸入:
http://localhost:9007//hello?name=pancm
界面返回:
xuwujing,hello!!
示例圖:
完成上述全局刷新測(cè)試之后,有時(shí)我們只想刷新部分微服務(wù)的配置,那么便可以使用/actuator/bus-refresh/{destination}
端點(diǎn)的 destination
參數(shù)來(lái)定位要刷新的應(yīng)用程序。
我們繼續(xù)更改configtest-pro.properties
的配置為:
word=hello!!!
然后依舊使用Postman工具發(fā)送post請(qǐng)求,地址為:
http://localhost:9005/actuator/bus-refresh/springcloud-config-bus-client2
然后我們?cè)贋g覽器輸入:
http://localhost:9006//hello?name=pancm
界面返回:
pancm,hello!!
瀏覽器輸入:
http://localhost:9007//hello?name=pancm
界面返回:
xuwujing,hello!!!
發(fā)現(xiàn)只有springcloud-config-bus-client2
客戶端的配置更新,另一個(gè)springcloud-config-bus-client
沒(méi)有進(jìn)行刷新,達(dá)到了我們的目的。
示例圖:
上述示例完成之后,我們把SpringCloud Config Refresh
的測(cè)試在進(jìn)行一遍,發(fā)現(xiàn)依舊可以實(shí)現(xiàn),因此我們發(fā)現(xiàn)只要開(kāi)啟Spring Cloud Bus
后,不管是對(duì)服務(wù)端還是客戶端,執(zhí)行/actuator/bus-refresh
都是可以更新配置的。
如果我們想進(jìn)行跟蹤總線事件的話,只需要在刷新配置之后,在地址后面添加/trace
或/actuator/httptrace
即可。
基于SpringBoot2.x、SpringCloud的Finchley版本開(kāi)發(fā)的地址:https://github.com/xuwujing/springcloud-study
如果感覺(jué)項(xiàng)目不錯(cuò),希望能給個(gè)star,謝謝!
<iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width=330 height=86 src="//music.163.com/outchain/player?type=2&id=730859&auto=0&height=66"></iframe>
原創(chuàng)不易,如果感覺(jué)不錯(cuò),希望留言推薦!您的支持是我寫(xiě)作的最大動(dòng)力!
版權(quán)聲明:
作者:虛無(wú)境
博客園出處:http://www.cnblogs.com/xuwujing
CSDN出處:http://blog.csdn.net/qazwsxpcm
個(gè)人博客出處:http://www.panchengming.com
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。