プロパティをロードする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);
}
しかし、私の疑問は
- classpath:myApp/myApp.properties を使用して File オブジェクトを作成するにはどうすればよいですか (絶対パスがわからないため)
- 新しい myApp.properties を [onChange メソッドで] PropetisUtil クラスにロード/渡すために、Spring を呼び出す/呼び出すにはどうすればよいですか。