热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

SpringCloud之Bus(消息总线)

说明:关于SpringCloud系列的文章中的代码都在码云上面地址:https:gitee.comzh_0209_javaspringcloud-ali

说明:关于SpringCloud系列的文章中的代码都在码云上面
地址:https://gitee.com/zh_0209_java/springcloud-alibaba.git


简介

Spring Cloud Bus 配置 Spring Cloud Config 使用可以实现配置的动态刷新。
在这里插入图片描述
Spring Cloud Bus 是用来将分布式系统的节点与轻量级消息系统链接起来的框架,他整合了Java的事件处理机制和消息中间件的功能

Bus 支持两种消息代理:RabbitMQKafka


作用

Spring Cloud Bus 能管理和传播分布式系统间的消息,就像一个分布式执行器,可用于广播状态更改,事件推送等,也可以当做微服务间的通信通道。

在这里插入图片描述


为什么被称之为总线?



  • 什么是总线?
    在微服务架构的系统中,通常会使用轻量级的消息代理来构架一个共用的消息主题,并让系统中所有微服务实例都连接上来。由于该主题中产生的消息会被所有实例监听和消费,所以称他为消息总线

基本原理

ConfigClient 实例都监听MQ中通一个topic(默认是springCloudBus).当一个服务刷新数据的时候,他会把这个消息放入到Topic中,这样其他监听同一个Topic的服务就能得到通知,然后去更新自身的配置。


修改3344服务

  1. 新增pom依赖


<dependency><groupId>org.springframework.cloudgroupId><artifactId>spring-cloud-starter-bus-amqpartifactId>
dependency>

  1. 修改配置文件

server:port: 3344
spring:application:name: cloud-config-center # 注册进eureka服务器的微服务名cloud:config:server:git:uri: https://gitee.com/zh_0209_java/springcloud-config.git # 远程仓库上配置文件的地址label: master # 读取的分支# rabbitmq 相关配置rabbitmq:host: 10.10.11.21port: 5672username: guestpassword: guest# &#61;&#61;&#61;&#61;&#61;&#61;&#61;&#61;&#61;&#61;&#61;&#61; eureka client &#61;&#61;&#61;&#61;&#61;&#61;&#61;&#61;&#61;&#61;&#61;
eureka:# 设置控制台显示的服务路径instance:instance-id: configCenter3344prefer-ip-address: true # 访问地址可以显示ip# Eureka客户端向服务端发送心跳的时间间隔&#xff0c;单位为秒&#xff08;默认是30秒&#xff09;lease-renewal-interval-in-seconds: 1# Eureka 服务端在收到最后一次心跳后等待时间上线&#xff0c;单位为秒&#xff08;默认是90秒&#xff09;&#xff0c;超时将剔除服务lease-expiration-duration-in-seconds: 2client:# 表示是否将自己注册进eurekaServer,默认为trueregister-with-eureka: true# 是否从EurekaServer抓取已有的注册信息&#xff0c;默认为true.单节点无所谓&#xff0c;集群必须设置为true才能配合ribbon使用负载均衡fetchRegistry: trueservice-url:# 本机入住eurekaServer 地址defaultZone: http://localhost:7001/eureka # 单机版
# defaultZone: http://localhost:7001/eureka,http://localhost:7002/eureka # 集群版# 暴露bus刷新配置的端点
management:endpoints:web:exposure:include: &#39;bus-refresh&#39;

修改3355服务

  1. 新增pom依赖


<dependency><groupId>org.springframework.cloudgroupId><artifactId>spring-cloud-starter-bus-amqpartifactId>
dependency>

  1. 修改配置文件

server:port: 3355spring:application:name: config-clientcloud:config:label: master # 读取的分支name: config # 配置文件名称profile: dev # 读取后缀名称&#xff0c;上述3个综合条件&#xff1a;master分支上config-dev.yml的配置文件被读取uri: http://localhost:3344 # 配置中心地址rabbitmq:host: 10.10.11.21port: 5672username: guestpassword: guest
# &#61;&#61;&#61;&#61;&#61;&#61;&#61;&#61;&#61;&#61;&#61;&#61; eureka client &#61;&#61;&#61;&#61;&#61;&#61;&#61;&#61;&#61;&#61;&#61;
eureka:# 设置控制台显示的服务路径instance:instance-id: configClient3355prefer-ip-address: true # 访问地址可以显示ip# Eureka客户端向服务端发送心跳的时间间隔&#xff0c;单位为秒&#xff08;默认是30秒&#xff09;lease-renewal-interval-in-seconds: 1# Eureka 服务端在收到最后一次心跳后等待时间上线&#xff0c;单位为秒&#xff08;默认是90秒&#xff09;&#xff0c;超时将剔除服务lease-expiration-duration-in-seconds: 2client:# 表示是否将自己注册进eurekaServer,默认为trueregister-with-eureka: true# 是否从EurekaServer抓取已有的注册信息&#xff0c;默认为true.单节点无所谓&#xff0c;集群必须设置为true才能配合ribbon使用负载均衡fetchRegistry: trueservice-url:# 本机入住eurekaServer 地址defaultZone: http://localhost:7001/eureka # 单机版
# defaultZone: http://localhost:7001/eureka,http://localhost:7002/eureka # 集群版# 暴露监控端点
management:endpoints:web:exposure:include: "*"

启动eureka&#xff0c;3344,3355 进行测试

当修改完远程仓库的配置文件后&#xff0c;向3344发送一个POST请求 curl -X POST "http://localhost:3344/actuator/bus-refresh",在访问3355&#xff0c;即可发现自动更新了配置&#xff0c;这样的好处就是&#xff0c;向配置服务端发送一个post请求&#xff0c;可以更新所有客户端的请求。


bus动态刷新定点通知

比如我们现在还有一个客户端3366&#xff0c;当我们更新了配置&#xff0c;想只刷新3355&#xff0c;而不更新3366&#xff0c;这时候就需要定点通知

公式&#xff1a; http://localhost:3344/actuator/bus-refresh/{destination}

通过destination 参数指定需要更新配置的服务或实例&#xff0c;

destination 的取值就是 {spring.application.name} [: {port}]

比如我想只刷新3355&#xff0c;那么就发送这样一个POST请求curl -X POST http://localhost:3344/actuator/bus-refresh/config-client:3355


推荐阅读
author-avatar
立行谏圣
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有