3

有什么方法可以springboot在我们更改.properties文件后立即刷新配置?

我遇到了spring-cloud-config许多文章/博客建议将其用于分布式环境。我的springboot应用程序有许多部署,但它们彼此不相关或不依赖。我还查看了一些解决方案,他们建议提供休息端点以手动刷新配置而无需重新启动应用程序。但是我想在.properties无需手动干预的情况下更改文件时动态刷新配置。

非常感谢任何指南/建议。

4

1 回答 1

4

您能否只使用 Spring Cloud Config“服务器”并让它向您的 Spring Cloud 客户端发出属性文件已更改的信号。看这个例子:

https://spring.io/guides/gs/centralized-configuration/

在幕后,它正在对底层资源进行轮询,然后将其广播给您的客户端:

    @Scheduled(fixedRateString = "${spring.cloud.config.server.monitor.fixedDelay:5000}")
    public void poll() {
        for (File file : filesFromEvents()) {
            this.endpoint.notifyByPath(new HttpHeaders(), Collections
                    .<String, Object>singletonMap("path", file.getAbsolutePath()));
        }
    }

如果您不想使用配置服务器,在您自己的代码中,您可以使用类似的预定注释并监控您的properties文件:

@Component
public class MyRefresher {

    @Autowired
    private ContextRefresher contextRefresher;

    @Scheduled(fixedDelay=5000)
    public void myRefresher() {
        // Code here could potentially look at the properties file 
        // to see if it changed, and conditionally call the next line...
        contextRefresher.refresh();
    } 
}
于 2018-08-20T01:07:11.473 回答