我写了一个 PropertyUtils 类(来自互联网),它将加载属性
<bean id="propertiesUtil" class="com.myApp.PropertiesUtil" >
<property name="locations">
<list>
<value>classpath:myApp/myApp.properties</value>
</list>
</property>
</bean>
PropertiesUtil 类如下所示
public class PropertiesUtil extends PropertyPlaceholderConfigurer {
private static Map<String, String> properties = new HashMap<String, String>();
@Override
protected void loadProperties(final Properties props) throws IOException {
super.loadProperties(props);
for (final Object key : props.keySet()) {
properties.put((String) key, props.getProperty((String) key));
}
}
public String getProperty(final String name) {
return properties.get(name);
}
}
稍后,我可以通过调用 PropertiesUtil.getProperty() 方法来获取该属性。
但现在我想稍微修改一下,如果 myApp.properties 被用户修改/更改,它应该再次加载
可能我需要 FileWatcher 类
public abstract class FileWatcher extends TimerTask {
private long timeStamp;
private File file;
public FileWatcher(File file) {
this.file = file;
this.timeStamp = file.lastModified();
}
@Override
public final void run() {
long timeStampNew = this.file.lastModified();
if (this.timeStamp != timeStampNew) {
this.timeStamp = timeStampNew;
onChange(this.file);
}
}
protected abstract void onChange(File newFile);
}
但我的疑问是
- 如何使用类路径创建文件对象:myApp/myApp.properties(因为不知道绝对路径)
- 如何调用/调用 spring 来加载/传递新的 myApp.properties 到 PropetisUtil 类 [在 onChange 方法中]。