前言:
必需学会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-1https://github.com/eddie-code/SpringCloudDemo