springcloud:config搭配bus使用
Spring Cloud Bus简介
Spring Cloud Bus能管理和传播分布式系统间的消息,就像一个分布式执行器,可用于广播状态更改、事件推送等,也可以当作微服务间的通信通道。
什么是总线
在微服务架构的系统中,通常会使用轻量级的消息代理来构建一个共用的消息主题,并让系统中所有微服务实例都连接上来。由于该主题中产生的消息会被所有实例监听和消费,所以称它为消息总线。在总线上的各个实例,都可以方便地广播一些需要让其他连接在该主题上的实例都知道的消息。
基本原理
ConfigClient实例都监听MQ中同一个topic(默认是springCloudBus)。当一个服务刷新数据的时候,它会把这个信息放入到Topic中,这样其它监听同一Topic的服务就能得到通知,然后去更新自身的配置。
Spring Cloud Bus支持的消息中间件
目前Spring Cloud Bus只支持RabbitMQ 和 Kafka
Spring Cloud Bus搭配Spring Cloud Config使用
本案例采用rabbitmq,环境的安装请自行准备。
环境搭建
- 首先创建好一个configServer,两个相同服务configClient的微服务实例。
- 采用给configServer发送刷新通知,达到通知全体订阅的configClient,架构图如下:
- configServer和configClient都得有rabbitmq的支持和配置才行。因为从mq的角度上看,其实就是生产者和消费者的关系。
configServer添加依赖:
<!--添加消息总线RabbitMQ支持-->
<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>
configServer的YML:
server:
port: 3344
spring:
application:
name: cloud-config-center #注册进Eureka服务器的微服务名
cloud:
config:
server:
git:
uri: https://gitee.com/HXueWen/springcloud-config.git #GitHub上面的git仓库名字
####搜索目录
search-paths:
- springcloud-config
####读取分支
label: master
#rabbitmq相关配置
rabbitmq:
host: localhost
port: 5672
username: guest
password: guest
##rabbitmq相关配置,暴露bus刷新配置的端点
management:
endpoints: #暴露bus刷新配置的端点
web:
exposure:
include: 'bus-refresh'
configClient添加依赖:
<!--添加消息总线RabbitMQ支持-->
<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>
configClient的YML:
spring:
application:
name: config-client
cloud:
#Config客户端配置
config:
label: master #分支名称
name: application #配置文件名称
profile: dev #读取后缀名称 上述3个综合:master分支上config-dev.yml的配置文件被读取http://config-3344.com:3344/master/config-dev.yml
uri: http://localhost:3344 #配置中心地址k
#rabbitmq相关配置 15672是Web管理界面的端口;5672是MQ访问的端口
rabbitmq:
host: localhost
port: 5672
username: guest
password: guest
#eureka配置
eureka:
client:
#表示是否将自己注册进EurekaServer默认为true。
register-with-eureka: true
#是否从EurekaServer抓取已有的注册信息,默认为true。单节点无所谓,集群必须设置为true才能配合ribbon使用负载均衡
fetchRegistry: true
service-url:
defaultZone: http://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka # 集群版
management:
endpoints:
web:
exposure:
include: "*"
测试
启动configServer和两个configClient,然后修改github上面的配置信息,给configServer发送post请求,如下:
curl -X POST "http://localhost:3344/actuator/bus-refresh"
发送后访问两个configClient:http://localhost:3355/configInfo和http://localhost:3366/configInfo,发现都发生了改变。只需要发送一次请求,实现全体订阅服务的配置更新。
Spring Cloud Bus搭配Spring Cloud Config实现定点通知
可能会有这样的一个需求:就是configServer发生更新,按理来说他下面的configClient也应该都发生更新。不过现在只想让其中一部分configClient读取最新配置,另一些保持现状,这个该如何实现呢?
其实很简单,只需要在原有post请求地址上多加一个参数就行,如下:
公式:http://localhost:配置中心的端口号/actuator/bus-refresh/{destination}
这里的{destination}一般是:微服务名:端口号
比如说现在让3355更新,3366不更新,则发送:
curl -X POST "http://localhost:3344/actuator/bus-refresh/config-client:3355"