一、避免每次更新配置都要重启客户端微服务3355
二、动态刷新
1、步骤
修改3355模块
pom引入actuator监控
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
修改yml,暴露监控端口
@RefreshScope业务类Controller修改
此时修改github—>3344—->3355
How
需要运维人员发送Post请求刷新3355
curl -x post “http://localhost:3355/actuator/refresh“
再次
三、想想还有什么问题?
假如有多个微服务客户端3355/3366/3377.。。
每个微服务都要执行一次post请求,手动刷新?
可否广播,一次通知,处处生效?
我们想大范围的自动刷新
所以引入了消息总线