当前位置:   article > 正文

微服务SpringCloud(Bus 消息总线)整合十九_spring bus和mq

spring bus和mq

上一篇,我们学习了SpringCloud Config分布式配置中心,我们也发现了一个很恶心的问题,就是我们在配置中心更改了配置,需要手动给每一个客户端发送post请求,这样如果客户端有几百个,那不得手动发几百次请求。那有没有更好的方式呢?只需要发一次请求,就可以通知所有的客户端。这个就是我们今天要讲的SpringCloud Bus消息总线了。

SpringCloud Bus是什么?

在这里插入图片描述
Spring Cloud Bus是用来将分布式系统的节点与轻量级消息系统链接起来的框架,它整合了Java的事件处理机制和消息中间件的功能。Spring Clud Bus目前支持RabbitMQ和Kafka。

SpringCloud Bus 可以用来做什么呢?

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

SpringCloud Bus 为何称为消息总线呢?

在微服务架构的系统中,通常会使用轻量级的消息代理来构建一个共用的消息主题,并让系统中所有微服务实例都连接上来。由于该主题中产生的消息会被所有实例监听和消费,所以称它为消息总线。在总线上的各个实例,都可以方便地广播一些需要让其他连接在该主题上的实例都知道的消息。
配置中心客户端实例都监听MQ中同一个topic(默认是springCloudBus)。当一个服务刷新数据的时候,它会把这个信息放入到Topic中,这样其它监听同一Topic的服务就能得到通知,然后去更新自身的配置。

可以看到如果我们要使用SpringCloud Bus 的话,必须要结合MQ来使用,所以我们需要安装RabbitMQ。因为我本机已经安装过了RabbitMQ,大家可以到官网下载安装:https://www.rabbitmq.com/#features。
在这里插入图片描述
我们进入到MQ安装位置的目录里面:
执行命令: rabbitmq-plugins enable rabbitmq_management
在这里插入图片描述
这个用来添加可视化插件的。
在这里插入图片描述
我们就可以通过命令启动MQ了。

启动之后访问地址: http://localhost:15672/
在这里插入图片描述
输入账号 和密码:guest guest

在这里插入图片描述

SpringCloud 整合Bus

我们在新增一个客户端 pcloud-config-client-5588,新建Module
在这里插入图片描述
在这里插入图片描述
新建pom文件:

<?xml version="1.0" encoding="UTF-8"?>

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <artifactId>pcloud</artifactId>
    <groupId>com.younger.springcloud</groupId>
    <version>1.0-SNAPSHOT</version>
  </parent>

  <groupId>com.younger.springcloud</groupId>
  <artifactId>pcloud-config-client-5588</artifactId>
  <version>1.0-SNAPSHOT</version>

  <name>pcloud-config-client-5588</name>

  <dependencies>
    <dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud-starter-config</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>

    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-devtools</artifactId>
      <scope>runtime</scope>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.projectlombok</groupId>
      <artifactId>lombok</artifactId>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-test</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
  • 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
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54

新增bootstrap.yml文件:

server:
  port: 5588

spring:
  application:
    name: pcloud-config-client
  cloud:
    #Config客户端配置   需要读取的文件 younger-edu-ad-dev.yml
    config:
      label: master #分支名称
      name: younger-edu-ad #配置文件名称
      profile: dev #读取后缀名称
      uri: http://localhost:5555 #配置中心地址k

#服务注册到eureka地址
eureka:
  client:
    service-url:
      defaultZone: http://eureka6001:6001/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

新增启动类:ConfigClientMain5588

package com.younger.springcloud;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;

@SpringBootApplication
@EnableEurekaClient
public class ConfigClientMain5588 {

    public static void main(String[] args) {
        SpringApplication.run(ConfigClientMain5588.class, args);
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

新增controller :ConfigClientController
在这里插入图片描述

package com.younger.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;

@RestController
@RefreshScope
public class ConfigClientController {

    @Value("${spring.datasource.url}")
    private String dataSourceUrl;

    @GetMapping("/getDataSourceUrl")
    public String getDataSourceUrl() {

        return "数据库地址:" + dataSourceUrl;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

通过消息总线刷新配置有两种方式:

1、利用消息总线触发一个客户端/bus/refresh,而刷新所有客户端的配置
在这里插入图片描述
2、利用消息总线触发一个服务端ConfigServer的/bus/refresh端点,而刷新所有客户端的配置
在这里插入图片描述
这两种方案显然第二种方式更符合我们的要求,如果使用第一种方式会有一定的局限性。例如,微服务在迁移时,它的网络地址常常会发生变化,此时如果想要做到自动刷新,那就会增加更多的修改。所以接下来我们采用第二种方式刷新消息。
一、我们先修改 配置中心 5555 的pom文件 和 yml文件:
在这里插入图片描述

    <dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud-starter-bus-amqp</artifactId>
    </dependency>
  • 1
  • 2
  • 3
  • 4

在这里插入图片描述

server:
  port: 5555
spring:
  application:
    name:  pcloud-config-center
  cloud:
    config:
      server:
        git:
          uri: https://gitee.com/youngerone123/younger-edu-repo #GitHub上面的git仓库名字
          ####搜索目录
          search-paths:
            - younger-edu-repo # git上面存放配置的文件夹
          username: youngerone123
          password: qq42338
      ####读取分支
      label: master
      name: config
  rabbitmq:
    host: localhost
    port: 5672
    username: guest
    password: guest

#服务注册到eureka地址
eureka:
  client:
    service-url:
      defaultZone: http://eureka6001:6001/eureka/

##rabbitmq相关配置,暴露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
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36

二、修改5566的pom文件和yml文件:
在这里插入图片描述

    <dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud-starter-bus-amqp</artifactId>
    </dependency>
  • 1
  • 2
  • 3
  • 4

在这里插入图片描述

 #rabbitmq相关配置
  rabbitmq:
    host: localhost
    port: 5672
    username: guest
    password: guest
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

三、修改5588的pom文件和yml文件:
在这里插入图片描述

  <dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud-starter-bus-amqp</artifactId>
    </dependency>
  • 1
  • 2
  • 3
  • 4

在这里插入图片描述

rabbitmq:
    host: localhost
    port: 5672
    username: guest
    password: guest
  • 1
  • 2
  • 3
  • 4
  • 5

启动项目测试:
在这里插入图片描述
我们修改码云上的配置:
在这里插入图片描述
刷新配置请求: http://localhost:5555/actuator/bus-refresh
在这里插入图片描述
配置中心获取配置 : http://127.0.0.1:5555/younger-edu-ad-dev.yml
在这里插入图片描述
客户端获取配置: http://localhost:5566/getDataSourceUrl、 http://localhost:5588/getDataSourceUrl
在这里插入图片描述
在这里插入图片描述
可以看到都已经成功获取到了最新的配置了。

我们不仅可以通知所有的客户端刷新配置,我们还可以只通知某个客户端刷新配置。我们现在只想通知5566 刷新配置。

我们码云上的配置:
在这里插入图片描述
发送post请求:http://localhost:5555/actuator/bus-refresh/pcloud-config-client:5566
在这里插入图片描述
客户端获取配置: http://localhost:5566/getDataSourceUrl、 http://localhost:5588/getDataSourceUrl
在这里插入图片描述
在这里插入图片描述
这样我们就可以通知某个客户端刷新配置了。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/85682
推荐阅读
相关标签
  

闽ICP备14008679号