欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

springcloud学习笔记之bus

程序员文章站 2022-07-13 08:33:48
...

springcloud bus

springcloud bus:管理和传播分布式系统间的消息,类似于一个分布式执行器,可用于广播状态更改、事件推送等,微服务间的通信通道。

消息总线:在微服务的架构系统中,使用轻量级的消息代理来构建一个公共的消息主题,并让系统中的所有微服务实例都连接起来。该主题中生产的消息会被所有的实例监听和消费,所以称为消息总线。每个实例都可以广播需要让其他连接到该主题上的实例都知道的消息。

消息总线触发服务端ConfigServer进行刷新
服务端
添加依赖

<dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-bus-amqp</artifactId>
</dependency>

yml文件添加配置
springcloud学习笔记之bus

客户端端
添加依赖

<dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-bus-amqp</artifactId>
</dependency>

yml文件添加配置
springcloud学习笔记之bus

指定通知实例
curl -X POST http://localhost:3344/actuator/bus-refresh/{destination}
例如:curl -X POST http://localhost:3344/actuator/bus-refresh/cloud-config-client:3355