2

我有一个使用 Spring Cloud Config 和 Spring Cloud Bus 的配置服务器以及一些也有 Spring Cloud Bus 的客户端。每次更改配置时,我都会使用邮递员将 /bus/refresh 发送到配置服务器。我找到了两种方法来做到这一点:

  1. 刷新特定客户端:http://localhost/bus/refresh/app1:dev:8080
  2. 刷新所有客户端:http://localhost/bus/refresh

有没有办法用一个帖子请求刷新两个特定的客户端?

4

2 回答 2

2

如果您想要相同服务的实例,您可以这样做http://localhost/bus/refresh/app1:dev:*

于 2017-01-09T19:07:24.557 回答
1

您可以在单个 /bus/refresh?destination URL 中使用 & 分隔多个应用程序名称,如下所示,它将刷新两个特定提及的应用程序(app1 和 app2)的配置:

http://localhost/bus/refresh?destination=app1 : &app2:

于 2017-11-17T07:17:56.390 回答