这是一个大学项目: 我正在使用Spring PropertyPlaceholderConfigurer从属性中获取值 文件。我通过以下代码从GUI更新属性文件:
Properties prop = new Properties();
FileOutputStream out = null;
out = new FileOutputStream("pro.properties");
prop.setProperty("durationpro", "wk");
prop.store(out, null);
out.flush();
out.close();
我尝试使用两种方法来使更新的文件正常工作: http://www.wuenschenswert.net/wunschdenken/archives/127 我尝试在文件更新后直接刷新上下文应用程序
ApplicationContext f = new FileSystemXmlApplicationContext("Bean1.xml");
((ConfigurableApplicationContext)f).refresh();
我的代码
ApplicationContext context = new ClassPathXmlApplicationContext("Bean1.xml");
BeanFactory factory = (BeanFactory) context;
TestGUI t = (TestGUI) factory.getBean("testbean");
当应用程序正在运行时(我不必关闭应用程序),我必须手动打开和关闭属性文件,然后识别更改。这两种方法都会发生这种情况
我用于弹出刷新方法的xml文件是:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
<bean id="propertyPlaceholderConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:pro.properties</value>
</list>
</property>
</bean>
<bean id="com" class="Domestic" />
<bean id="wk" class="Week" />
<bean id="mth" class="Month" />
<bean id="testbean" class="TestGUI">
<property name="customerType" ref="com" />
<property name="duration" ref="${durationpro}"/>
</bean>
</beans>
我完全复制了xml文件以用于其他Wunschdenken方法
感谢您的帮助