博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【SpringCloud 】第八篇: 消息总线(Spring Cloud Bus)
阅读量:5009 次
发布时间:2019-06-12

本文共 4616 字,大约阅读时间需要 15 分钟。

前言:

必需学会SpringBoot基础知识

简介:

spring cloud 为开发人员提供了快速构建分布式系统的一些工具,包括配置管理、服务发现、断路器、路由、微代理、事件总线、全局锁、决策竞选、分布式会话等等。它运行环境简单,可以在开发人员的电脑上跑。

工具:

JDK8

apache-maven-3.5.2

IntelliJ IDEA 2018.1 x64

 

Spring Cloud Bus 将分布式的节点用轻量的消息代理连接起来。它可以用于广播配置文件的更改或者服务之间的通讯,也可以用于监控。本文要讲述的是用Spring Cloud Bus实现通知微服务架构的配置文件的更改。

 

                          

分析: 当git文件更改的时候,通过Postman –> Post 向端口为8882的eureka-config-client发送请求/bus/refresh/;此时8882端口会发送一个消息,由消息总线向其他服务传递,从而使整个微服务集群都达到更新配置文件。

 

一、准备工作

首先, 需要安装 rabbitMq 点击rabbitmq下载, (如果不会安装的查看我写的教程: )

二、改造 eureka-config-client –> pom.xml –> spring-cloud-starter-bus-amqp

4.0.0
com.lwc
eureka-config-client
0.0.1-SNAPSHOT
jar
eureka-config-client
Demo project for Spring Boot
org.springframework.boot
spring-boot-starter-parent
1.5.10.RELEASE
UTF-8
UTF-8
1.8
Edgware.SR3
org.springframework.retry
spring-retry
org.springframework.cloud
spring-cloud-starter-config
org.springframework.boot
spring-boot-starter-web
org.springframework.boot
spring-boot-starter-aop
org.springframework.cloud
spring-cloud-starter-eureka
org.springframework.boot
spring-boot-starter-test
test
org.springframework.cloud
spring-cloud-starter-bus-amqp
org.springframework.boot
spring-boot-starter-actuator
org.springframework.cloud
spring-cloud-dependencies
${spring-cloud.version}
pom
import
org.springframework.boot
spring-boot-maven-plugin
spring-milestones
Spring Milestones
https://repo.spring.io/milestone
false

在配置文件bootstrap-dev.yml中加上RabbitMq的配置,包括RabbitMq的地址、端口,用户名、密码,代码如下:

server:  port: 8882eureka:  client:    serviceUrl:      defaultZone: http://localhost:8889/eureka/spring:  cloud:    config:      label: master      profile: local      discovery:        serviceId: eureka-config-server        enabled: true  rabbitmq:    username: your username    password: your password    host: your host    port: 5672management:  security:    enabled: false

如果rabbitmq有用户名密码,输入即可。

依次启动eureka-config-server-cluster、eureka-config-server,启动两个eureka-config-client,端口为:8881、8882。

访问http://localhost:8881/url 或者 http://localhost:8882/url 浏览器显示:

http://www.cnblogs.com/EddieBlog/

重要环节:  正常情况下在修改了数值, 是需要重启服务才能达到配置文件更新, 如何解决这种尴尬的情况呢?

只需要发送 POST 请求:http://localhost:8881/bus/refresh 就会重新加载:

      

 

这时我们再访问http://localhost:8881/url 或者http://localhost:8882/url 浏览器显示:

http://www.cnblogs.com/EddieBlog/p/8724912.html

提示:

/bus/refresh接口可以指定服务,即使用”destination”参数,比如 “/bus/refresh?destination=customers:**” 即刷新服务名为customers的所有服务,不管 IP Addr

 

还有一种方式: eureka-config-server, N个eureka-config-client

1. 在 eureka-config-server 添加依赖 2. 在 eureka-config-server 写入 rabbitmq 配置 3. client 端不需要做什么修改, 如果真的需要的话,加上 management.security.enabled=false ,防止不能够刷新。 4. POSTMAN TEST

 
 

三、源码下载:

标签 8-1

https://github.com/eddie-code/SpringCloudDemo

转载于:https://www.cnblogs.com/EddieBlog/p/8748556.html

你可能感兴趣的文章
ThreadLocal来管理事务
查看>>
EJB开发基础——EJB规范
查看>>
将光标定位于输入框最右侧的实现方式
查看>>
用两个栈实现队列(五)
查看>>
删除C盘垃圾文件bat
查看>>
MVC多语言设置 实战简洁版
查看>>
Eclipse连接海马模拟器
查看>>
【学长出题】【比赛题解】17-10-18
查看>>
mysql远程访问被拒绝问题
查看>>
NHibernate教程(21)——二级缓存(下)
查看>>
实践一下前端性能分析
查看>>
c++11新特性之宽窄字符转换
查看>>
爬虫的三种数据解析方式和验证码的处理
查看>>
Angular 2018 All in One
查看>>
公网访问阿里云数据库MongoDB——填坑笔记
查看>>
python内置函数二
查看>>
S1304HTML内测测试分析
查看>>
电梯调度需求分析
查看>>
WCF:如何将net.tcp协议寄宿到IIS
查看>>
新浪微博-其他
查看>>