91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring Cloud Bus消息的示例分析

發布時間:2022-03-04 14:19:04 來源:億速云 閱讀:188 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關Spring Cloud Bus消息的示例分析,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

概念

我們使用配置中心時,當配置中心的配置發生了變化,我們就要發送一個post請求給客戶端,讓它重新去拉取新的的配置。當客戶端有很多時,并且還是使用同一份配置文件,這樣當配置中心的配置發生改變,我們就得逐個發送post請求通知,這樣無疑是很浪費人力物力的。
Bus消息總線組件就幫我們解決了這個問題。他的工作流程是這樣的,當配置中心的配置發生了變化時,我們給其中一個客戶端發送post請求,然后client將請求的信息發送到rabbitmq隊列中,然后消息隊列將消息發送給別的隊列。

使用

準備工作

項目基于Spring Cloud 第七章的項目改造。

改造config-client 添加相應坐標

<dependencies>
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-starter-config</artifactId>
		</dependency>

		<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-bus-amqp</artifactId>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-actuator</artifactId>
		</dependency>

在啟動類中添加@RefreshScope注解
@RefreshScope注解只需要寫在需要刷新配置文件的地方,不一定非要在啟動類中

@SpringBootApplication
@EnableEurekaClient
@EnableDiscoveryClient
@RestController
@RefreshScope
public class ConfigClientApplication {

	/**
	 * http://localhost:8881/actuator/bus-refresh
	 */

	public static void main(String[] args) {
		SpringApplication.run(ConfigClientApplication.class, args);
	}

	@Value("${foo}")
	String foo;

	@RequestMapping(value = "/hi")
	public String hi(){
		return foo;
	}
}

配置相關配置

spring.rabbitmq.host=localhost
spring.rabbitmq.port=5672
spring.rabbitmq.username=guest
spring.rabbitmq.password=guest

spring.cloud.bus.enabled=true
spring.cloud.bus.trace.enabled=true
management.endpoints.web.exposure.include=bus-refresh
management.security.enabled=false  //報錯加上
  • 依次啟動eureka-server、confg-cserver,啟動兩個config-client,端口為:8881、8882。

  • 訪問http://localhost:8881/hi 或者http://localhost:8882/hi 瀏覽器顯示:

foo version 3

  • 這時我們去代碼倉庫將foo的值改為“foo version 4”,即改變配置文件foo的值。如果是傳統的做法,需要重啟服務,才能達到配置文件的更新。此時,我們只需要發送post請求:http://localhost:8881/actuator/bus-refresh,你會發現config-client會重新讀取配置文件

  • 1.5版本的post請求http://localhost:8881/bus/refresh

  • 2.0版本的post請求http://localhost:8881/actuator/bus-refresh

  • 這時我們再訪問http://localhost:8881/hi 或者http://localhost:8882/hi 瀏覽器顯示:

foo version 4

另外,/actuator/bus-refresh接口可以指定服務,即使用"destination"參數,比如 “/actuator/bus-refresh?destination=customers:**” 即刷新服務名為customers的所有服務。 原理圖

Spring Cloud Bus消息的示例分析

當git文件更改的時候,通過pc端用post 向端口為8882的config-client發送請求/bus/refresh/;此時8882端口會發送一個消息,由消息總線向其他服務傳遞,從而使整個微服務集群都達到更新配置文件。

關于“Spring Cloud Bus消息的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

黄冈市| 彩票| 高密市| 宜兰县| 潜山县| 凭祥市| 子洲县| 郑州市| 开江县| 南雄市| 新乡县| 七台河市| 榆社县| 丹凤县| 南阳市| 高邑县| 泸水县| 茂名市| 太保市| 东海县| 神木县| 伊春市| 上蔡县| 焉耆| 额敏县| 昌图县| 新郑市| 崇阳县| 泸定县| 双柏县| 白银市| 准格尔旗| 阿城市| 霸州市| 苗栗市| 泸州市| 青川县| 大安市| 玛沁县| 合肥市| 名山县|