• SpringCloud Bus消息总线


    SpringCloud Bus消息总线

    1、消息总线概念

    官网地址:https://docs.spring.io/spring-cloud-bus/docs/current/reference/html/

    Spring Cloud Bus 配合 Spring Cloud Config 使用可以实现配置的动态刷新。

    [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-ltI1r3aT-1666837162788)(image/70、Spring Cloud Bus.jpg)]

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

    [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-qMij9MAp-1666837162789)(image/71、通信通道.png)]

    什么是总线

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

    总线基本原理

    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

    [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-gkWoAsyw-1666837162789)(image/72、安装Erlang.png)]

    在终端执行语句检查erl是否安装成功,看到版本号就是成功了

    erl
    
    • 1

    2.2、下载RabbitMQ

    GIT下载地址:https://github.com/rabbitmq/rabbitmq-server/releases/tag/v3.7.14

    下载rabbitmq-server-3.7.14.exe,推荐在虚拟机或云服务器上通过docker容器进行安装

    安装后检查系统变量的配置,是否有,没有就手动修改,一定要确保安装成功erl,否则安装rabbitmq会失败

    [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-qeaMKA4Y-1666837162790)(image/75、Erload环境变量.png)]

    2.3、进入RabbitMQ安装目录下的sbin目录

    [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-amXHUaI5-1666837162790)(image/74、rabbitmq目录.png)]

    输入以下命令完成安装三个插件【必须定位在该目录下执行】

    在终端输入命令

    rabbitmq-plugins enable rabbitmq_management
    
    • 1

    [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-nGykvFlD-1666837162791)(image/76、安装rabbitmq.png)]

    查看本地会出现一些可视化程序

    [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-zLQK6zM5-1666837162791)(image/77、rabbitmq可视化.png)]

    1. 安装【install】
    2. 启动【start】
    3. 移除【remove】
    4. 停止【stop】

    2.4、启动RabbitMQ命令

    rabbitmq-server.bat
    
    # 也可以点击上面2.3说到的可视化程序
    
    • 1
    • 2
    • 3

    [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-2blMdG4R-1666837162791)(image/78、启动rabbitmq.png)]

    浏览器访问:http://localhost:15672/

    [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-EGtHfpoU-1666837162792)(image/79、rabbitmq访问.png)]

    账号:guest
    密码:guest
    
    • 1
    • 2

    3、SpringCloud Bus动态刷新全局广播

    必须完成上面的RabbitMQ环境的安装才能正常的使用下面的功能

    3.1、新建cloud-config-client-3366客户端模块

    3.1.1、引入依赖

    <dependencies>
        <dependency>
            <groupId>org.springframework.cloudgroupId>
            <artifactId>spring-cloud-starter-configartifactId>
        dependency>
        <dependency>
            <groupId>org.springframework.cloudgroupId>
            <artifactId>spring-cloud-starter-netflix-eureka-clientartifactId>
        dependency>
        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starter-webartifactId>
        dependency>
        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starter-actuatorartifactId>
        dependency>
    
        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-devtoolsartifactId>
            <scope>runtimescope>
            <optional>trueoptional>
        dependency>
        <dependency>
            <groupId>org.projectlombokgroupId>
            <artifactId>lombokartifactId>
            <optional>trueoptional>
        dependency>
        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starter-testartifactId>
            <scope>testscope>
        dependency>
    dependencies>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35

    3.1.2、添加配置文件

    server:
      port: 3366
    
    spring:
      application:
        name: config-client
      cloud:
        #Config客户端配置
        config:
          label: master #分支名称
          name: config #配置文件名称
          profile: dev #读取后缀名称   上述3个综合:master分支上config-dev.yml的配置文件被读取http://config-3344.com:3344/master/config-dev.yml
          uri: http://localhost:3344 #配置中心地址
    
    #服务注册到eureka地址
    eureka:
      client:
        service-url:
          defaultZone: http://localhost:7001/eureka
    
    # 暴露监控端点
    management:
      endpoints:
        web:
          exposure:
            include: "*"
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26

    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;
    
    /**
     * 描述:配置中心客户端2
     *
     * @author zhong
     * @date 2022-09-21 22:03
     */
    @SpringBootApplication
    @EnableEurekaClient
    public class ConfigClientMain3366 {
        public static void main(String[] args) {
            SpringApplication.run(ConfigClientMain3366.class, args);
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19

    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;
    
    /**
     * 描述:业务控制器
     *
     * @author zhong
     * @date 2022-09-21 22:04
     */
    @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;
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29

    4、两种设计思想

    4.1、利用消息总线触发一个客户端/bus/refresh,而刷新所有客户端的配置

    弊端:
    1. 打破了微服务的职责单一性,因为微服务本身是业务模块,它本不应该承担配置刷新的职责。
    2. 破坏了微服务各节点的对等性。
    3. 有一定的局限性。例如,微服务在迁移时,它的网络地址常常会发生变化,此时如果想要做到自动刷新,那就会增加更多的修改

    4.2、利用消息总线触发一个服务端ConfigServer的/bus/refresh端点,而刷新所有客户端的配置【使用】

    5、给cloud-config-center-3344配置中心服务端添加消息总线支持

    5.1、添加pom.xml依赖

    
    <dependency>
        <groupId>org.springframework.cloudgroupId>
        <artifactId>spring-cloud-starter-bus-amqpartifactId>
    dependency>
    
    
    <dependency>
        <groupId>org.springframework.bootgroupId>
        <artifactId>spring-boot-starter-actuatorartifactId>
    dependency>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    5.2、修改YAML配置文件

    在配置文件中添加如下的内容

    spring:
      application:
        name:  cloud-config-center #注册进Eureka服务器的微服务名
      cloud:
        config:
          ...
      #rabbitmq相关配置
      rabbitmq:
        host: localhost
        port: 5672
        username: zcl
        password: xxxx
        
    # 暴露bus刷新配置的端点
    management:
      endpoints: #暴露bus刷新配置的端点
        web:
          exposure:
            include: 'bus-refresh' # 暴露的端点看之前的架构图
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19

    6、给cloud-config-client-3355客户端添加消息总线支持

    6.1、添加mq依赖

    与上面的服务端一样

    6.2、修改YAML配置文件

    spring:
      application:
        name: config-client
      cloud:
        #Config客户端配置
        config:
          label: master #分支名称
          name: config #配置文件名称
          profile: dev #读取后缀名称   上述3个综合:master分支上config-dev.yml的配置文件被读取http://config-3344.com:3344/master/config-dev.yml
          uri: http://localhost:3344 #配置中心地址
    
      #rabbitmq相关配置 15672是Web管理界面的端口;5672是MQ访问的端口
      rabbitmq:
        host: localhost
        port: 5672
        username: guest
        password: guest
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17

    7、给cloud-config-client-3366客户端添加消息总线支持

    修改内容与步骤【6】一样

    8、启动访问测试MQ广播效果

    1. 启动7001Eureka服务注册中心

    2. 启动3344、3355、3366

    3. 分别测试各自的功能是否正常

      • 连接Eureka查看服务中心是否正常

        [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-9neREVNM-1666837162792)(image/80、启动服务.png)]

      • 查看RabbitMQ管理页面:http://localhost:15672/#/connections

        [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-rPkApC98-1666837162793)(image/81、MQ消费者.png)]

      • 测试原来的连接是否可以获取到配置文件【都能读取到配置表示正常】

        http://localhost:3344/config-prod.yml
        
        http://localhost:3345/config-prod.yml
        
        http://localhost:3346/config-prod.yml
        
        • 1
        • 2
        • 3
        • 4
        • 5
    4. 修改gitee中的配置文件,然后通过curl进行配置服务中心广播各个客户端刷新

      • 刷新3344服务是否刷新配置

      • 通过curl向配置服务中心发送修改通知,所有的客户端都可以监听到

        curl -X POST "http://localhost:3344/actuator/bus-refresh"
        
        • 1
      • 再次刷新3355、3366客户端查看配置是否刷新

        如果需要虚拟机的或云服务器的一定要保证网络畅通,否则可能会出现后端连接监听消息队列报错,解决办法重新启动项目或RabbitMQ,再测试

    5. 服务端以及客户端都可以监听到仓库代码的修改就是成功了

    9、SpringCloud Bus动态刷新定点通知

    不想全部通知,只想定点通知。指定具体某一个实例生效而不是全部

    维护人员发布的定点通知格式

    公式:http://localhost:配置中心的端口号/actuator/bus-refresh/{destination}
    
    • 1

    {destination}就是微服务名称:端口号。例如:

    server:
      port: 3355
    
    spring:
      application:
        name: config-client
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    发送请求

    curl -X POST "http://localhost:3344/actuator/bus-refresh/config-client:3355"
    
    • 1
  • 相关阅读:
    【C++天梯计划】1.1 C++初识
    Go在招聘中最吃香、安全工程师薪资涨幅最高 | Hired年度软件工程师报告出炉
    Python学习----基础语法2
    Prometheus+Grafana可视化监控【Nginx状态】
    Hadoop——Yarn 调度器和调度算法
    所求和问题
    Atlas2.2.0编译、安装及使用(集成ElasticSearch,导入Hive数据)
    C++ 继承原理。
    echarts——实现3D地图+3D柱状图 效果——粗糙代码记录——技能提升
    计算机网络_第五章_运输层
  • 原文地址:https://blog.csdn.net/baidu_39378193/article/details/127546992