3

我想让我的属性文件每 xx 秒重新加载一次。我的代码:

...
configuration = new PropertiesConfiguration();
configuration.setFileName(filename);

if (configuration.getFile().exists()) {
    configuration.load();

    final FileChangedReloadingStrategy strategy = new FileChangedReloadingStrategy();
    strategy.setRefreshDelay(3000);
    configuration.setReloadingStrategy(strategy);
} else {
    LOGGER.warn("Configuration file '{}' not found", filename);
}
...

但是我的文件永远不会重新加载:(有什么想法吗?

编辑:实际上我认为我的问题来自我覆盖 load() 方法的事实:

private static final class SystemPropertiesConfiguration extends PropertiesConfiguration {


    public SystemPropertiesConfiguration(String fileName) throws ConfigurationException
    {
        super(fileName);
    }

    @Override
    public synchronized void load(final Reader in) throws ConfigurationException {
        super.load(in);

        if (LOGGER.isDebugEnabled()) {
            LOGGER.debug("Updating system properties");
        }

        final boolean debugEnabled = LOGGER.isDebugEnabled();
        final Iterator<String> ite = getKeys();
        String key;

        while (ite.hasNext()) {
            key = ite.next();

            if (debugEnabled) {
                LOGGER.debug("Updating system property: {}", key);
            }

            System.setProperty(key, getString(key));
        }
    }
}

目的实际上是推送 System.properties 中的属性。所以我的问题是: FileChangedReloadingStrategy 是否调用 PropertiesConfiguration.load() 方法?

4

1 回答 1

0

确保您更改了部署目录中的文件,而不是您的 IDE 中的源文件。

于 2017-05-02T23:26:00.170 回答