springcloud微服务学习笔记58:Bus动态刷新定点通知

springcloud微服务学习笔记目录:

不想全部通知,只想定点通知
指定具体某一个实例生效而不是全部
公式: http://localhost:3344/actuator/bus-refresh/{destination}
/bus/refresh请求不再发送到具体的服务实例上,而是发给config server并通过destination参数类指定需要更新配置的服务或实例

案例:
只通知3355,不通知3366
curl -X POST "http://localhost:3344/actuator/bus-refresh/config-client:3355 "
在这里插入图片描述
修改GitHub上配置文件
在这里插入图片描述
3344
在这里插入图片描述
通知3355
在这里插入图片描述
不通知3366
在这里插入图片描述

 
posted @ 2022-10-04 10:36  Jonkidi  阅读(80)  评论(0)    收藏  举报