を使用してロードする構成ファイル(XML)がありますXMLConfiguration
。
XMLConfiguration
このインスタンスが更新されていることを確認する必要があります(30秒ごと)。
そのことについては、私は次のコードを持っています:
XMLConfiguration configuration = new XMLConfiguration(configFile);
configuration.setAutoSave(true);
FileChangedReloadingStrategy strategy = new FileChangedReloadingStrategy();
strategy.setRefreshDelay(getRefreshDelay());
configuration.setReloadingStrategy(strategy);
うまく機能しますが、このXMLファイルに変更を記録したいのです。
それを行う方法はありますか?