我想在我的应用程序上下文中更改我的 bean 属性的值,而不从属性文件中读取。我将获取属性对象中设置的属性值。在调用 api 接口时,properties 对象将被传递给我的 api。
问问题
1741 次
1 回答
1
您可以通过自定义ApplicationContextInitializer
并使用PropertySource
被调用的PropertiesPropertySource
以这种方式创建自定义 ApplicationContextInitializer:
public class PropertyRegisterAppInitializer implements ApplicationContextInitializer<ConfigurableApplicationContext>{
@Override
public void initialize(ConfigurableApplicationContext applicationContext) {
MutablePropertySources sources = applicationContext.getEnvironment().getPropertySources();
Properties props = new Properties();
props.put("testkey", "testval");
sources.addFirst(new PropertiesPropertySource("propertiesSource", props ));
}
}
ApplicationContextInitializer
通过web.xml
文件注册:
<context-param>
<param-name>contextInitializerClasses</param-name>
<param-value>props.PropertyRegisterAppInitializer</param-value>
</context-param>
于 2013-05-09T14:30:42.537 回答