Spring Cloud-Bus(十二)
说明
用于分布式上所有微服务都连接到消息总线上面。进行统一的通知
Config动态刷新
configClient

configClient通过/actuator/bus-refresh端点通知消息总线 消息总线通知线上的所有服务实例 调用/actuator/refresh端点进行配置更新
configClient改造
1.增加bus pom依赖
<!--根据消息总线实现所有服务配置刷新-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bus-amqp</artifactId>
</dependency>
2.配置文件增加mq信息
spring:
rabbitmq: #更多mq配置看书331页
username: liqiang
password: liqiang
host: localhost
port: 5672
3.配置文件增加bus端点
management:
endpoints:
web:
exposure:
include: refresh,bus-refresh
4.完整配置文件
spring:
application:
name: config #对应{application}
cloud:
config:
profile: dev #映射{profile}
label: master #映射{label}
#uri: http://127.0.0.1:7001 #config server地址
username: liqiang #configserver身份认证用户名
password: liqiang #configserver身份认证密码
discovery:
service-id: CONFIG-SERVER #configserver的服务名
enabled: true #开启通过服务访问configserver的功能
fail-fast: true #快速响应spring.cloud.config.fail-fast=true
retry:
multiplier: 1.1 #默认间隔乘数 如果间隔是1000 下一次间隔是1100
max-interval: 2000 #默认最大间隔数(毫秒)
max-attempts: 6 #默认重试次数
initial-interval: 1000 #默认间隔数
rabbitmq: #更多mq配置看书331页
username: liqiang
password: liqiang
host: localhost
port: 5672
server:
port: 7002
eureka:
instance:
hostname: localhost #当前实例的主机名字
client:
serviceUrl:
defaultZone: http://peer1:1111/eureka/, http://peer2:1112/eureka/
#http://127.0.0.1:7002/actuator/refresh
management:
endpoints:
web:
exposure:
include: refresh,bus-refresh
5.复制2个配置文件 分别命名为peer1和peer2并且将端口改为不一致

6.将client instail打包
8.执行eurekaserver config-server 通过命令启动2个client
java -jar /Users/liqiang/Desktop/java开发环境/mavenRegitstory/com/liqiang/spring-cloud-config-client/0.0.1-SNAPSHOT/spring-cloud-config-client-0.0.1-SNAPSHOT.jar --spring.profiles.active=peer1
java -jar /Users/liqiang/Desktop/java开发环境/mavenRegitstory/com/liqiang/spring-cloud-config-client/0.0.1-SNAPSHOT/spring-cloud-config-client-0.0.1-SNAPSHOT.jar --spring.profiles.active=peer2
9.测试
post请求http://127.0.0.1:7003/actuator/bus-refresh 测试没通过 只有7003实现了刷新
PS:最终测试时版本文本 不确定是版本差异还是bug 修改版本 重新测试
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<!--<version>2.1.0.RELEASE</version>-->
<version>2.0.3.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<!--<spring-cloud.version>Greenwich.M3</spring-cloud.version>-->
<spring-cloud.version>Finchley.RELEASE</spring-cloud.version>
</properties>


10.修改git 77777为88888
posman访问http://localhost:7002/actuator/bus-refresh


可以看到总线上的7003服务 也刷新了
configServer
我们可以发现 通知总线上所有实例刷新配置由configServer来负责会更合理
1.configServer增加pom依赖
<!--根据消息总线实现所有服务配置刷新-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bus-amqp</artifactId>
</dependency>
2.配置文件增加mq以及端点
spring:
rabbitmq: #更多mq配置看书331页
username: liqiang
password: liqiang
host: localhost
port: 5672
management:
endpoints:
web:
exposure:
include: health,info,bus-refresh
3.刷新配置改为访问server的/actuator/bus-refresh 就可以了
指定服务刷新
http://localhost:7001/actuator/bus-refresh?destination=CONFIG:7002 为服务名字为config同时端口为7002的刷新
ps:没测试通过应该改为
http://localhost:7001/actuator/bus-refresh/config:7002 刷新名为config 同时端口为7002的服务
http://localhost:7001/actuator/bus-refresh/config:** 为刷新名为config的所有服务
事件跟踪
1.设置spring.cloud.bus.trace.enabled=true
2开启端点httptrace
management:
endpoints:
web:
exposure:
include: health,info,bus-refresh,httptrace,trace
3.访问http://localhost:7001/actuator/bus-refresh
4.再访问http://127.0.0.1:7001/actuator/httptrace
5.跟老版本的/trace地址不一样输出内容也不一样感觉不利于分析
{
"traces": [{
"timestamp": "2019-01-23T00:51:47.346Z",
"principal": null,
"session": null,
"request": {
"method": "POST",
"uri": "http://localhost:7001/actuator/bus-refresh",
"headers": {
"content-type": ["application/json"],
"cache-control": ["no-cache"],
"postman-token": ["bfe920e9-66fb-42bf-b36f-13d577b9fab7"],
"user-agent": ["PostmanRuntime/7.4.0"],
"accept": ["*/*"],
"host": ["localhost:7001"],
"accept-encoding": ["gzip, deflate"],
"content-length": ["0"],
"connection": ["keep-alive"]
},
"remoteAddress": null
},
"response": {
"status": 204,
"headers": {}
},
"timeTaken": 3296
}, {
"timestamp": "2019-01-23T00:51:49.725Z",
"principal": null,
"session": null,
"request": {
"method": "GET",
"uri": "http://localhost:7001/config/dev/master",
"headers": {
"accept": ["application/xml, text/xml, application/json, application/*+xml, application/*+json"],
"user-agent": ["Java/1.8.0_181"],
"host": ["localhost:7001"],
"connection": ["keep-alive"]
},
"remoteAddress": null
},
"response": {
"status": 200,
"headers": {
"Content-Type": ["application/xml;charset=UTF-8"],
"Transfer-Encoding": ["chunked"],
"Date": ["Wed, 23 Jan 2019 00:51:49 GMT"]
}
},
"timeTaken": 58
}, {
"timestamp": "2019-01-23T00:51:49.621Z",
"principal": null,
"session": null,
"request": {
"method": "GET",
"uri": "http://localhost:7001/config/dev/master",
"headers": {
"accept": ["application/xml, text/xml, application/json, application/*+xml, application/*+json"],
"user-agent": ["Java/1.8.0_181"],
"host": ["localhost:7001"],
"connection": ["keep-alive"]
},
"remoteAddress": null
},
"response": {
"status": 200,
"headers": {
"Content-Type": ["application/xml;charset=UTF-8"],
"Transfer-Encoding": ["chunked"],
"Date": ["Wed, 23 Jan 2019 00:51:49 GMT"]
}
},
"timeTaken": 104
}, {
"timestamp": "2019-01-23T00:49:59.062Z",
"principal": null,
"session": null,
"request": {
"method": "POST",
"uri": "http://localhost:7001/actuator/bus-refresh",
"headers": {
"content-type": ["application/json"],
"cache-control": ["no-cache"],
"postman-token": ["470bc387-8f9b-4ddd-8655-66de72970a84"],
"user-agent": ["PostmanRuntime/7.4.0"],
"accept": ["*/*"],
"host": ["localhost:7001"],
"accept-encoding": ["gzip, deflate"],
"content-length": ["0"],
"connection": ["keep-alive"]
},
"remoteAddress": null
},
"response": {
"status": 204,
"headers": {}
},
"timeTaken": 3517
}, {
"timestamp": "2019-01-23T00:50:02.173Z",
"principal": null,
"session": null,
"request": {
"method": "GET",
"uri": "http://127.0.0.1:7001/actuator/httptrace",
"headers": {
"host": ["127.0.0.1:7001"],
"connection": ["keep-alive"],
"cache-control": ["max-age=0"],
"upgrade-insecure-requests": ["1"],
"user-agent": ["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 OPR/57.0.3098.116"],
"accept": ["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],
"accept-encoding": ["gzip, deflate, br"],
"accept-language": ["zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7"],
"cookie": ["JSESSIONID=6369DFBED3CE1C799C4FC36E246CE502; CURRENT_COOKIE=84822DAAAAE4F96E04CBDE51132D0CCE"]
},
"remoteAddress": null
},
"response": {
"status": 200,
"headers": {
"Content-Type": ["application/vnd.spring-boot.actuator.v2+json;charset=UTF-8"],
"Transfer-Encoding": ["chunked"],
"Date": ["Wed, 23 Jan 2019 00:50:01 GMT"]
}
},
"timeTaken": 4
}, {
"timestamp": "2019-01-23T00:50:01.319Z",
"principal": null,
"session": null,
"request": {
"method": "GET",
"uri": "http://localhost:7001/config/dev/master",
"headers": {
"accept": ["application/xml, text/xml, application/json, application/*+xml, application/*+json"],
"user-agent": ["Java/1.8.0_181"],
"host": ["localhost:7001"],
"connection": ["keep-alive"]
},
"remoteAddress": null
},
"response": {
"status": 200,
"headers": {
"Content-Type": ["application/xml;charset=UTF-8"],
"Transfer-Encoding": ["chunked"],
"Date": ["Wed, 23 Jan 2019 00:50:01 GMT"]
}
},
"timeTaken": 39
}, {
"timestamp": "2019-01-23T00:50:01.125Z",
"principal": null,
"session": null,
"request": {
"method": "GET",
"uri": "http://localhost:7001/config/dev/master",
"headers": {
"accept": ["application/xml, text/xml, application/json, application/*+xml, application/*+json"],
"user-agent": ["Java/1.8.0_181"],
"host": ["localhost:7001"],
"connection": ["keep-alive"]
},
"remoteAddress": null
},
"response": {
"status": 200,
"headers": {
"Content-Type": ["application/xml;charset=UTF-8"],
"Transfer-Encoding": ["chunked"],
"Date": ["Wed, 23 Jan 2019 00:50:01 GMT"]
}
},
"timeTaken": 86
}, {
"timestamp": "2019-01-23T00:49:53.411Z",
"principal": null,
"session": null,
"request": {
"method": "GET",
"uri": "http://127.0.0.1:7001/actuator/httptrace",
"headers": {
"host": ["127.0.0.1:7001"],
"connection": ["keep-alive"],
"cache-control": ["max-age=0"],
"upgrade-insecure-requests": ["1"],
"user-agent": ["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 OPR/57.0.3098.116"],
"accept": ["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],
"accept-encoding": ["gzip, deflate, br"],
"accept-language": ["zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7"],
"cookie": ["JSESSIONID=6369DFBED3CE1C799C4FC36E246CE502; CURRENT_COOKIE=84822DAAAAE4F96E04CBDE51132D0CCE"]
},
"remoteAddress": null
},
"response": {
"status": 200,
"headers": {
"Content-Type": ["application/vnd.spring-boot.actuator.v2+json;charset=UTF-8"],
"Transfer-Encoding": ["chunked"],
"Date": ["Wed, 23 Jan 2019 00:49:53 GMT"]
}
},
"timeTaken": 52
}]
}
源码分析
事件跟踪跟书上不一样 所以暂时止步
Spring Cloud-Bus(十二)的更多相关文章
- Spring Cloud(十二):分布式链路跟踪 Sleuth 与 Zipkin【Finchley 版】
Spring Cloud(十二):分布式链路跟踪 Sleuth 与 Zipkin[Finchley 版] 发表于 2018-04-24 | 随着业务发展,系统拆分导致系统调用链路愈发复杂一个前端请 ...
- Spring Cloud第十二篇 | 消息总线Bus
本文是Spring Cloud专栏的第十二篇文章,了解前十一篇文章内容有助于更好的理解本文: Spring Cloud第一篇 | Spring Cloud前言及其常用组件介绍概览 Spring ...
- Spring Cloud(十二)声名式服务调用:Feign 的使用(下)
前言 本文是对上一篇博文的扩充,很多平时用不到的特性就开始简略一写,Spring Cloud各版本之间的差距很大的,用不到的可能下一个版本就被kill掉了.由于笔者写本文开始的时候误解了Feign的继 ...
- Spring Cloud第十四篇 | Api网关Zuul
本文是Spring Cloud专栏的第十四篇文章,了解前十三篇文章内容有助于更好的理解本文: Spring Cloud第一篇 | Spring Cloud前言及其常用组件介绍概览 Spring C ...
- Spring Cloud(十):服务网关 Zuul(路由)【Finchley 版】
Spring Cloud(十):服务网关 Zuul(路由)[Finchley 版] 发表于 2018-04-23 | 更新于 2018-05-09 | 通过之前几篇 Spring Cloud 中 ...
- Spring Boot + Spring Cloud 构建微服务系统(十):配置中心(Spring Cloud Bus)
技术背景 我们在上一篇讲到,Spring Boot程序只在启动的时候加载配置文件信息,这样在GIT仓库配置修改之后,虽然配置中心服务器能够读取最新的提交信息,但是配置中心客户端却不会重新读取,以至于不 ...
- SpringCloud教程 | 第八篇: 消息总线(Spring Cloud Bus)
一.安装rabbitmq 二.pom父文件 <?xml version="1.0" encoding="UTF-8"?> <project x ...
- 第七篇: 消息总线(Spring Cloud Bus)
Spring Cloud Bus 将分布式的节点用轻量的消息代理连接起来.它可以用于广播配置文件的更改或者服务之间的通讯,也可以用于监控.本文要讲述的是用Spring Cloud Bus实现通知微服务 ...
- Spring Cloud (十五)Stream 入门、主要概念与自定义消息发送与接收
前言 不写随笔的日子仿佛就是什么都没有产出一般--上节说到要学Spring Cloud Bus,这里发现按照官方文档的顺序反而会更好些,因为不必去后边的章节去为当前章节去打基础,所以我们先学习Spri ...
- 【SpringCloud 】第八篇: 消息总线(Spring Cloud Bus)
前言: 必需学会SpringBoot基础知识 简介: spring cloud 为开发人员提供了快速构建分布式系统的一些工具,包括配置管理.服务发现.断路器.路由.微代理.事件总线.全局锁.决策竞选. ...
随机推荐
- 项目记录23--unity-tolua框架MediatorManager
我还存在!.!!! ! ! 这个类是管理全部模块,没什么好说就是个单例,之后还须要UIManager,SceneManager,DataManager... .慢慢来.不是还要上班做死的嘛,坑爹. M ...
- 解决WinForm下ListBox控件“设置DataSource属性后无法修改项集合”
解决WinForm下ListBox控件“设置DataSource属性后无法修改项集合” 最近更新: 2013-2-15 587 很少写WinForm程序第一次使用ListBox控件就遇到了比 ...
- 【撸码caffe 五】数据层搭建
caffe.cpp中的train函数内声明了一个类型为Solver类的智能指针solver: // Train / Finetune a model. int train() { -- shared_ ...
- B1192 [HNOI2006]超级英雄Hero 二分图匹配
先检讨一下,前一段时间开学,做题懒得发博客,也不总结...现在捡起来. 这个题一看是裸的二分图匹配,但是仔细一看还有一些区别,就是必须要连续的连接,否则直接退出.因为前一道题答不出来的话后面的题就没有 ...
- PCB 奥宝LDI 输出 轴交换与镜像关系
持续P2 奥宝LDI改造,针对轴交换与镜像关系整理如下:(标记) 关键参数说明: 轴交换swap_axes: 当为Yes,则图形--镜像+旋转90度,当为No,则图形--不动 xmirror与ymir ...
- C# 导出word 表格代码
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.We ...
- php 过滤敏感关键词
php 过滤敏感关键词 function badwords($content){ $keywords=M("config")->where("name='badwo ...
- Blender插件初始化范例
目标 [x] 总结Blender插件初始化范例 总结 插件模板 Blender内部插件实现方式模板功能总结如下: 定义了子模块重加载方式 定义了批量加载子模块的方式 插件注册函数 插件注销函数 模块总 ...
- POJ 2553 Tarjan
题意:如果v点能到的所有点反过来又能到v点,则v点是sink点,排序后输出所有的sink点. 思路:Tarjan缩点,输出所有出度为0的连通块内的点. PS:一定要记得把数组清零!!!!!!!否则自己 ...
- css中标签,类名,id名的命名 语义化命名
作为前端开发人,经常头疼于雷鸣,标签,id名的命名,不知道应该基于什么原则. 原则: 2 当命名的时候,问自己,这个元素是要来做什么?(根据使用目的).ad-banner 4 避免依靠位置和视觉效果命 ...