服务热线
135-6963-3175
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)); }