SpringCloud配置文件刷新之@RefreshScope
2019-12-05 本文已影响0人
梦想又照进现实
背景
当遇到生产环境配置参数需要调整,但又没有配置中心的支持的情况下,只能重启应用以加载新参数,可能会影响业务系统运行,太暴力不优雅;
@RefreshScope注解能帮助我们做局部的参数刷新,但侵入性较强,需要开发阶段提前预知可能的刷新点,并且该注解底层是依赖于cglib进行代理的,所以不要掉入cglib的坑,出现刷了也不更新情况;
常规的操作姿势大致有下面5个步骤;
操作指南
1、加依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
2、加yml配置
management:
security:
enabled: false
context-path: /
spring:
application:
name: mc-notify-proc
cloud:
config:
uri: ${CONFIG_URL:http://config-6c6e748485ba4979955467bf3c372.cs.xxx.cn} #${config-6c6e748485ba4979955467bf3c372.za23-config.svc.cluster.local:http://config-6c6e748485ba4979955467bf3c372.cs.xxx.cn}
3、加注解
@Component
@Slf4j
@RefreshScope
public class YstHttpProxySms {
@Value("${ystServicesSmsTokenUrl}")
private String ystServicesTokenUrl;
@Value("${ystServicesSmsUrl}")
private String ystServicesSmsUrl;
@Value("${accessKey}")
private String accessKey;
@Value("${secretKey}")
private String secretKey;
@Value("${refreshMin}")
private int refreshMin;
/**
* 初始化一事通HTTP连接相关参数
4、修改参数
修改码云或者git上的配置文件
5、发送刷新请求
curl -X POST http://localhost:8080/refresh
参考文章
Spring Cloud 是如何实现热更新的 http://www.scienjus.com/spring-cloud-refresh/