gpt4 book ai didi

java - 在使用@refreshScope 注释的多个实例上应用/刷新

转载 作者:搜寻专家 更新时间:2023-11-01 03:16:38 24 4
gpt4 key购买 nike

我正在编写 spring boot 应用程序,它使用 spring 配置,部署在 pivotal cloud foundry 上并由 Netflix Eureka 公开 作为发现服务/负载平衡器。

我创建了一个 bean,如下所示:

@Component
@ConfigurationProperties("config")
@RefreshScope
@Data
public class GeneralProperties {
private boolean ignoreEvent;
}

配置库中的实际属性改变后调用Eureka暴露的应用路由/refresh时,@refreshScope注解的值被改变了(end在响应状态字段存在),这意味着它工作正常。

当在云上运行同一应用程序的多个实例并调用 /refresh 时,问题开始。
beeing 使用的路由是 Eureka 公开的路由,它使用它的负载均衡器将调用路由到可用实例之一。

这会导致意外结果,即并非所有实例都根据属性的最新更改进行更新。

关于如何在所有实例上应用更改的任何建议?

最佳答案

在这种情况下,您应该使用 Spring Cloud Bus。该框架背后的想法是将所有应用程序实例绑定(bind)到消息代理(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。您还需要将您的应用程序绑定(bind)到 RabbitMQ,在 PCF 中这很容易,因为它内置于平台中。

当你需要刷新时,你应该调用:

POST /bus/refresh

这会触发一个主题的事件,您的应用程序的所有实例都在监听,结果 - 所有实例都会刷新它们的 bean 配置。

祝你好运。

关于java - 在使用@refreshScope 注释的多个实例上应用/刷新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47967899/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com