1

我有一個配置服務器,使用Spring Cloud Config和Spring Cloud Bus以及一些也具有Spring Cloud Bus的客戶端。每次我改變配置時,我都會使用郵遞員發送/總線/刷新到配置服務器。我發現兩種方法做到這一點:Spring Cloud Bus,如何在/ bus/refresh中指定多個目的地?destination =?

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

有什麼辦法刷新單POST請求兩個特定的客戶呢?

回答

0

如果你想要相同服務的實例,你可以做http://localhost/bus/refresh/app1:dev:*。 ?

1

可以採用單/總線/刷新目標URL給多個應用程序的名稱與&分離如下,它會刷新的兩個具體提到的應用程序的配置(應用和應用2):

http://localhost/bus/refresh?destination=app1& APP 2:

相關問題