SpringCloud Bus消息总线
1、消息总线概念
官网地址:https://docs.spring.io/spring-cloud-bus/docs/current/reference/html/
Spring Cloud Bus 配合 Spring Cloud Config 使用可以实现配置的动态刷新。
Bus支持两种消息代理:RabbitMQ 和 Kafka
Spring Cloud Bus能管理和传播分布式系统间的消息,就像一个分布式执行器,可用于广播状态更改、事件推送等,也可以当作微服务间的通信通道。
什么是总线
在微服务架构的系统中,通常会使用轻量级的消息代理来构建一个共用的消息主题,并让系统中所有微服务实例都连接上来。由于该主题中产生的消息会被所有实例监听和消费,所以称它为消息总线。在总线上的各个实例,都可以方便地广播一些需要让其他连接在该主题上的实例都知道的消息。
总线基本原理
ConfigClient实例都监听MQ中同一个topic(默认是springCloudBus)。当一个服务刷新数据的时候,它会把这个信息放入到Topic中,这样其它监听同一Topic的服务就能得到通知,然后去更新自身的配置
2、RabbitMQ环境配置【win版】
2.1、安装Erlang,下载地址:
注意:RabbitMQ是依赖于Erlang的,需要先安装,并且两者之间是有对应的版本关系的,需要官网查询
官网下载地址:http://www.erlang.org/downloads
指定下载地址:http://erlang.org/download/otp_win64_21.3.exe
在终端执行语句检查erl是否安装成功,看到版本号就是成功了
erl
2.2、下载RabbitMQ
GIT下载地址:https://github.com/rabbitmq/rabbitmq-server/releases/tag/v3.7.14
下载rabbitmq-server-3.7.14.exe ,推荐在虚拟机或云服务器上通过docker容器进行安装
安装后检查系统变量的配置,是否有,没有就手动修改,一定要确保安装成功erl,否则安装rabbitmq会失败
2.3、进入RabbitMQ安装目录下的sbin目录
输入以下命令完成安装三个插件【必须定位在该目录下执行】
在终端输入命令
rabbitmq-plugins enable rabbitmq_management
查看本地会出现一些可视化程序
- 安装【install】
- 启动【start】
- 移除【remove】
- 停止【stop】
2.4、启动RabbitMQ命令
rabbitmq-server.bat
# 也可以点击上面2.3说到的可视化程序
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-2blMdG4R-1666837162791)(image/78、启动rabbitmq.png)]
浏览器访问:http://localhost:15672/
账号:guest
密码:guest
3、SpringCloud Bus动态刷新全局广播
必须完成上面的RabbitMQ环境的安装才能正常的使用下面的功能
3.1、新建cloud-config-client-3366 客户端模块
3.1.1、引入依赖
<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-client</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
3.1.2、添加配置文件
server:
port: 3366
spring:
application:
name: config-client
cloud:
config:
label: master
name: config
profile: dev
uri: http://localhost:3344
eureka:
client:
service-url:
defaultZone: http://localhost:7001/eureka
management:
endpoints:
web:
exposure:
include: "*"
3.1.3、添加启动类
package com.zcl.springcloud;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
@SpringBootApplication
@EnableEurekaClient
public class ConfigClientMain3366 {
public static void main(String[] args) {
SpringApplication.run(ConfigClientMain3366.class, args);
}
}
3.1.4、添加对外暴露REST接口
package com.zcl.springcloud.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;
@RestController
@RefreshScope
public class ConfigClientController {
@Value("${server.port}")
private String serverPort;
@Value("${config.info}")
private String configInfo;
@GetMapping("/configInfo")
public String configInfo()
{
return "serverPort: "+serverPort+"\t\n\n configInfo: "+configInfo;
}
}
4、两种设计思想
4.1、利用消息总线触发一个客户端/bus/refresh,而刷新所有客户端的配置
弊端:
- 打破了微服务的职责单一性,因为微服务本身是业务模块,它本不应该承担配置刷新的职责。
- 破坏了微服务各节点的对等性。
- 有一定的局限性。例如,微服务在迁移时,它的网络地址常常会发生变化,此时如果想要做到自动刷新,那就会增加更多的修改
4.2、利用消息总线触发一个服务端ConfigServer的/bus/refresh端点,而刷新所有客户端的配置【使用】
5、给cloud-config-center-3344配置中心服务端添加消息总线支持
5.1、添加pom.xml依赖
<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>
5.2、修改YAML配置文件
在配置文件中添加如下的内容
spring:
application:
name: cloud-config-center
cloud:
config:
...
rabbitmq:
host: localhost
port: 5672
username: zcl
password: xxxx
management:
endpoints:
web:
exposure:
include: 'bus-refresh'
6、给cloud-config-client-3355客户端添加消息总线支持
6.1、添加mq依赖
与上面的服务端一样
6.2、修改YAML配置文件
spring:
application:
name: config-client
cloud:
config:
label: master
name: config
profile: dev
uri: http://localhost:3344
rabbitmq:
host: localhost
port: 5672
username: guest
password: guest
7、给cloud-config-client-3366客户端添加消息总线支持
修改内容与步骤【6】一样
8、启动访问测试MQ广播效果
-
启动7001Eureka服务注册中心 -
启动3344、3355、3366 -
分别测试各自的功能是否正常
-
连接Eureka查看服务中心是否正常 -
查看RabbitMQ管理页面:http://localhost:15672/#/connections -
测试原来的连接是否可以获取到配置文件【都能读取到配置表示正常】 http://localhost:3344/config-prod.yml
http://localhost:3345/config-prod.yml
http://localhost:3346/config-prod.yml
-
修改gitee中的配置文件,然后通过curl 进行配置服务中心广播各个客户端刷新
-
服务端以及客户端都可以监听到仓库代码的修改就是成功了
9、SpringCloud Bus动态刷新定点通知
不想全部通知,只想定点通知。指定具体某一个实例生效而不是全部
维护人员发布的定点通知格式
公式:http://localhost:配置中心的端口号/actuator/bus-refresh/{destination}
{destination}就是微服务名称:端口号。例如:
server:
port: 3355
spring:
application:
name: config-client
发送请求
curl -X POST "http://localhost:3344/actuator/bus-refresh/config-client:3355"
|