我正在编写Spring启动应用程序,它使用弹簧配置,部署在关键的云代工厂上,并由Netflix Eureka作为发现服务器/负载均衡器公开。
我创建了一个bean如下:
@Component
@ConfigurationProperties("config")
@RefreshScope
@Data
public class GeneralProperties {
private boolean ignoreEvent;
}
在更改配置库中的实际属性后调用Eureka用/refresh
公开的应用程序路由时,@ refreshScope注释的值已更改(在响应状态中结束该字段存在),这意味着它正常工作。
当在云上运行同一应用程序的多个实例并调用/refresh
时,问题就开始了。
使用的路由是Eureka公开的路由,它使用负载均衡器将呼叫路由到其中一个可用实例。
这会导致意外的结果,并非所有实例都会根据属性的最新更改进行更新。
有关如何在所有实例上应用更改的任何建议吗?
在这种情况下,您应该使用Spring Cloud Bus。此框架背后的想法是将所有应用程序实例绑定到消息代理(RabbitMQ或Apache Kafka)中的主题。
将以下依赖项添加到pom.xml:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-bus-parent</artifactId>
<version>1.3.2.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bus-amqp</artifactId>
</dependency>
</dependencies>
在上面的例子中,我添加了对amqp的依赖,即RabbitMQ。您还需要将应用程序绑定到RabbitMQ,在PCF中它很容易,因为它内置于平台中。
当您需要刷新时,您应该调用:
POST /bus/refresh
这将触发事件到应用程序的所有实例正在侦听的主题,因此 - 所有实例都将刷新其bean配置。
祝好运。