springcloud之配置中心config動態刷新-bus


 

 

 

 

bus只支持rabbitMq和Kafka

該項目使用rabbitMq

在上一節config中添加依賴

<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bus-amqp</artifactId>
</dependency>

配置文件中添加
rabbitmq:
host: 139.9.206.233
port: 5672
username: guest
password: guest
# 暴露檢測斷點

management:
endpoints:
web:
exposure:
include: "bus-refresh"


在client 3355端添加依賴(多個client端添加相同)
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bus-amqp</artifactId>
</dependency>

添加配置文件
rabbitmq:
host: 139.9.206.233
port: 5672
username: guest
password: guest

執行
>curl -X POST "http://localhost:3355/actuator/bus-refresh" 刷新所有配置
>curl -X POST "http://localhost:3355/actuator/bus-refresh/config-client:3355" 刷新3355端口配置

 

 














免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM