需求背景
在springboot项目中,我们可以在properties文件里配置各种属性,然后在代码里通过
@Value
方式获取属性值。
比如properties定义
user.ids=XXXXX
代码中使用
@Value("${user.ids}")
private String userIds;
这种方式的特点是,除非重启项目,否则通过@Value方式获取的值在项目启动过程中就确定了。
但现在有个需求是:
在项目运行过程中改变属性的值,不能重启项目。
现在我们来实现这个功能。
代码
1.自定义PropertySource并加入Environment
在项目启动时,将
OriginTrackedMapPropertySource
加入
Environment
对象。
OriginTrackedMapPropertySource
是
PropertySource
的一个实现类。
@Autowired
private ConfigurableApplicationContext applicationContext;
@PostConstruct
public void initUserIds(){
Map<String, Object> map = new HashMap<>();
map.put("userIds", "01393330");
OriginTrackedMapPropertySource source = new OriginTrackedMapPropertySource("customProperty", map);
MutablePropertySources propertySources = applicationContext.getEnvironment().getPropertySources();
propertySources.addLast(source);
}
2.获取自定义PropertySource中的属性
因为
Environment
对象中有了我们自定义的属性,所以此时不再通过
@Value
获取了,如下
@Autowired
private ConfigurableApplicationContext applicationContext;
String userIds = applicationContext.getEnvironment().getProperty("userIds");
3.改变PropertySource中的属性
对外暴露接口,传入需要改变的userIds
public String changeUserIds(String userIds){
MutablePropertySources propertySources = applicationContext.getEnvironment().getPropertySources();
Map map = (Map)propertySources.get("customProperty").getSource();
map.put("userIds", userIds);
return "OK";
}
调用后
Environment
对象中userIds就发生了改变
版权声明:本文为qq_39002724原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。