本文主要是介绍Spring Cloud Bus集成,不再/bus/refresh得到404了,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Spring Cloud Bus集成
目前工程的架子已经搭建完成,RabbitMQ也开始使用,因此考虑集成Spring Cloud Bus,这样修改变量时就不用考虑再要重启工程了。
目前最新版本的SpringCloudBus,不再是/bus/refresh
,而是/actuator/bus-refresh
SpringBoot与SpringCloud版本
版本如下
- Spring Boot 2.1.9.RELEASE
- Spring Cloud Greenwich.RELEASE
1. 配置中心Spring Cloud Server
修改如下
- 1.1 增加pom配置
<dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-bus-amqp</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-actuator</artifactId></dependency>
- 1.2 增加properties配置(替换相应配置)
# spring cloud bus config
spring.rabbitmq.host=Your Host
spring.rabbitmq.port=Your Ip
spring.rabbitmq.username=Your Username
spring.rabbitmq.password=Your Password
spring.rabbitmq.virtual-host=Your Virutal Host# spring cloud bus 关键, 开启对应的端点
management.endpoints.web.exposure.include=bus-refresh,bus-env
- 1.3 刷新配置的URL
POST请求接口即可刷新,ContentType要用application/json
,以前的/bus/refresh
已经不再被使用了,现在的和actuator集成再一起了
http://localhost:8888/actuator/bus-refresh
上面的URL是刷新所有的注册到一起的微服务应用,至于单个刷新暂时没有考虑,其他教程有提到直接在后面加参数指定即可。
2. 某个微服务应用
修改如下
- 2.1 增加pom配置
<dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-bus-amqp</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-actuator</artifactId></dependency>
- 2.2 增加properties配置(替换相应配置,同Config配置中心配置)
# spring cloud bus config
spring.rabbitmq.host=Your Host
spring.rabbitmq.port=Your Ip
spring.rabbitmq.username=Your Username
spring.rabbitmq.password=Your Password
spring.rabbitmq.virtual-host=Your Virutal Host# spring cloud bus 关键, 开启对应的端点
management.endpoints.web.exposure.include=bus-refresh,bus-env
- 2.3 增加
@RefreshScope
对于启动类以及使用@Value的类,都要加上@RefreshScope
,否则即使修改了配置,进行了配置刷新,也不会刷新已存储的旧值。
3. 具体实际使用
具体微服务应用工程和Congif配置中心工程配置好之后,请求Config配置中心的/actuator/refresh
接口,然后就会发现具体微服务应用工程打印刷新配置的日志,甚至会直接说明哪些配置刷新了。
这篇关于Spring Cloud Bus集成,不再/bus/refresh得到404了的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!