コモンコンフィギュレーション2を使用すると、特定のファイルベースのプロパティが変更されたときに通知を受けたいと思います。そのためには、ReloadingFileBasedConfigurationBuilder、PeriodicReloadingTriggerを使用しています。Apacheのコモンコンフィギュレーション2:ReloadingFileBasedConfigurationBuilderのConfigurationEventが生成されない
ドキュメントごとに、ビルダーは中央のコンポーネントとして使用し、基礎となるファイルが変更されたときにbuilder.getConfiguration()によって構成を再生成する必要があります。ファイルが変更されたときにConfigurationBuilderEvent.RESET通知を受け取ることができました。新しい設定で自分の設定を更新することができます。
ただし、ConfigurationEvent.ANYのイベントリスナーを追加しようとすると、変更されたファイルの実際のプロパティが通知されるため、通知されません。どんな助けもありがとうございます。
import java.io.File;
import java.util.concurrent.TimeUnit;
import org.apache.commons.configuration2.PropertiesConfiguration;
import org.apache.commons.configuration2.builder.ConfigurationBuilderEvent;
import org.apache.commons.configuration2.builder.EventListenerParameters;
import org.apache.commons.configuration2.builder.ReloadingFileBasedConfigurationBuilder;
import org.apache.commons.configuration2.builder.fluent.Parameters;
import org.apache.commons.configuration2.event.ConfigurationEvent;
import org.apache.commons.configuration2.event.EventListener;
import org.apache.commons.configuration2.reloading.PeriodicReloadingTrigger;
public class ReloadingConfigEventTest {
public static void main(String[] args) throws Exception {
Parameters params = new Parameters();
EventListenerParameters listenerParams = new EventListenerParameters();
listenerParams.addEventListener(ConfigurationEvent.ANY, new EventListener<ConfigurationEvent>() {
public void onEvent(ConfigurationEvent event) {
System.out.println(event.getEventType().getName() +" "+event.getPropertyName());
}
}).addEventListener(ConfigurationBuilderEvent.RESET, new EventListener<ConfigurationBuilderEvent>() {
public void onEvent(ConfigurationBuilderEvent event) {
System.out.println("Event:" + event.getEventType().getName());
}
});
ReloadingFileBasedConfigurationBuilder<PropertiesConfiguration> builder = new ReloadingFileBasedConfigurationBuilder<PropertiesConfiguration>(
PropertiesConfiguration.class)
.configure(params.fileBased().setFile(new File("src/main/resource/override.conf")), listenerParams);
PeriodicReloadingTrigger trigger = new PeriodicReloadingTrigger(builder.getReloadingController(), null, 1,
TimeUnit.SECONDS);
trigger.start();
//modify the property file during the infinite loop, the new property is picked, but the SET_PROPERTY notification is missing
while (true) {
Thread.sleep(1000);
System.out.println(builder.getConfiguration().getString("test.property1"));
}
}
}