简介
Spring Cloud Bus 配合Spring Cloud Config 使用可以实现配置的动态刷新。
Spring Cloud Bus是用来将分布式系统的节点与轻量级消息系统链接起来的框架,它整合了Java的事件处理机制和消息中间件的功能。Spring Clud Bus目前支持RabbitMQ和Kafka。
Spring Cloud Bus能管理和传播分布式系统间的消息,就像一个分布式执行器,可用于广播状态更改、事件推送等,也可以当作微服务间的通信通道。
为何被称为总线
什么是总线
在微服务架构的系统中,通常会使用轻量级的消息代理来构建一个共用的消息主题,并让系统中所有微服务实例都连接上来。由于该主题中产生的消息会被所有实例监听和消费,所以称它为消息总线。在总线上的各个实例,都可以方便地广播一些需要让其他连接在该主题上的实例都知道的消息。
基本原理
ConfigClient实例都监听MQ中同一个topic(默认是Spring Cloud Bus)。当一个服务刷新数据的时候,它会把这个信息放入到Topic中,这样其它监听同一Topic的服务就能得到通知,然后去更新自身的配置。
使用
服务端
在config服务端引入架包
<!-- bus--><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>
在application.yml中配置actuator与rabbitmq相关支持
# rabbitMQ相关配置rabbitmq:host: localhostport: 5672username: yipassword: 123456
# 暴露 /bus/refresh 用于刷新
management:endpoints:web:exposure:include: 'bus-refresh'
客户端
引入相关架包
<dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-bus-amqp</artifactId></dependency><!--config client--><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>
在application.yml中同样加入rabbitmq的配置:
spring:application:name: config-client#############################新增网关配置###########################cloud:config:label: master #分支名称name: config #配置文件的名称profile: test #读取后缀的名称 读取:http://localhost:3344/master/config-devuri: http://localhost:3344# rabbitMQ相关配置rabbitmq:host: localhostport: 5672username: yipassword: 123456
注意:客户端的controller一定要加入@RefreshScope注解,否则刷新不会生效。
配置服务端、客户端完成后只需要向config服务端去发送post请求:curl -X POST “http://localhost:3344/actuator/bus-refresh”,即可广播到所有客户端,更新配置信息。
定点通知
更新配置的时候,可以做到仅通知个别config客户端。
使用curl -X POST “http://localhost:3344/actuator/bus-refresh/{destination}”
比如curl -X POST “http://localhost:3344/actuator/bus-refresh/config-client:3355”
仅通知服务名config-client 端口号为3355的客户