AFAIK, वहाँ शुद्ध एक्सएमएल द्वारा ऐसा करने का कोई तरीका नहीं है।
सबसे पहले, परीक्षण: वैसे भी, यहाँ एक छोटे से कोड मैंने किया था आज सुबह है
public class EnvironmentTests {
@Test
public void addPropertiesToEnvironmentTest() {
ApplicationContext context = new ClassPathXmlApplicationContext(
"testContext.xml");
Environment environment = context.getEnvironment();
String world = environment.getProperty("hello");
assertNotNull(world);
assertEquals("world", world);
System.out.println("Hello " + world);
}
}
फिर कक्षा:
public class PropertySourcesAdderBean implements InitializingBean,
ApplicationContextAware {
private Properties properties;
private ApplicationContext applicationContext;
public PropertySourcesAdderBean() {
}
public void afterPropertiesSet() throws Exception {
PropertiesPropertySource propertySource = new PropertiesPropertySource(
"helloWorldProps", this.properties);
ConfigurableEnvironment environment = (ConfigurableEnvironment) this.applicationContext
.getEnvironment();
environment.getPropertySources().addFirst(propertySource);
}
public Properties getProperties() {
return properties;
}
public void setProperties(Properties properties) {
this.properties = properties;
}
public void setApplicationContext(ApplicationContext applicationContext)
throws BeansException {
this.applicationContext = applicationContext;
}
}
और testContext.xml:
<?xml version="1.0" encoding="UTF-8"?>
<beans ...>
<util:properties id="props" location="classpath:props.properties" />
<bean id="propertySources" class="org.mael.stackoverflow.testing.PropertySourcesAdderBean">
<property name="properties" ref="props" />
</bean>
</beans>
और props.properties फ़ाइल:
hello=world
यह बहुत सरल है, बस एक ApplicationContextAware
सेम का उपयोग करें और (Web)ApplicationContext
से ConfigurableEnvironment
मिलता है। फिर MutablePropertySources
यह @Configure वर्ग के साथ काम नहीं करता है जब आप @ImportResource साथ एक्सएमएल को इंगित ("classpath:
तो अगर आप एक सेम में संपत्ति इंजेक्षन करना चाहते हैं बस इसे एक चर के रूप में उल्लेख : Properties.xml "), लेकिन जब आप इसे आवेदती के साथ लोड करते हैं तो काम करता है आपके उदाहरण में oncontext। – surajz