技术交流28群

服务热线

135-6963-3175

微信服务号

MutablePropertySources动态修改属性 更新时间 2022-2-21 浏览774次

Spring动态替换Properties配置变量

@Autowired
protected ConfigurableEnvironment environment;
public void updateProp(){
MutablePropertySources mutablePropertySources = environment.getPropertySources();
    Properties properties = new Properties();
    properties.put("propName", "newValue");
    mutablePropertySources.addFirst(new PropertiesPropertySource("bean", properties));
}