4

我写了一个 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);
}

但我的疑问是

  1. 如何使用类路径创建文件对象:myApp/myApp.properties(因为不知道绝对路径)
  2. 如何调用/调用 spring 来加载/传递新的 myApp.properties 到 PropetisUtil 类 [在 onChange 方法中]。
4

3 回答 3

10

以下支持您正在寻找的内容:

https://commons.apache.org/proper/commons-configuration/userguide/howto_properties.html

PropertiesConfiguration config = new PropertiesConfiguration("usergui.properties");
config.setReloadingStrategy(new FileChangedReloadingStrategy());

这应该可以解决问题。我自己没有使用过它,但它似乎很简单。

于 2013-01-02T05:18:37.470 回答
7

您可以使用 Spring 的 ReloadableResourceBundleMessageSource 类,如下所示:

<?xml version="1.0" encoding="UTF-8" ?>
<beans xmlns="http://www.springframework.org/schema/beans" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd">

    <bean id="myProperties" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
        <!-- check property file(s) every 1 second -->
        <property name="cacheSeconds" value="1"/>
        <property name="basenames">
            <list>
                <value>myApp/myApp</value>
            </list>
        </property>
    </bean>

</beans>

然后你可以调用 MessageSource.getMessage() 方法来获取属性值。这是一个例子:

package com.example;

import org.springframework.context.ApplicationContext;
import org.springframework.context.MessageSource;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MyApp {
public static void main(String[] args) throws InterruptedException {
        ApplicationContext ctx = new ClassPathXmlApplicationContext("myApp/MyApp.xml");
        MessageSource myProperties = (MessageSource) ctx.getBean("myProperties");
        while (true) {
            System.out.println(myProperties.getMessage("myApp.propertyOne", null, null));
            Thread.sleep(1000);
        }
    }
} 

如果您将“myProperties”bean 重命名为“messageSource”,则可以直接调用 ApplicationContext.getMessage(String code, Object[] args, Locale locale)。

对于您的网络应用程序,请将您的属性文件放在网络应用程序的类路径之外(因为网络服务器可能会缓存它们)。例如,WEB-INF/conf/myApp.properties

于 2013-01-02T06:04:13.077 回答
-1

可能更简单的方法是这样做:

<util:properties location="classpath:config.properties" id="configProperties" />
<context:property-placeholder properties-ref="configProperties"  />

这样,您可以通过注入/访问名称为“configProperties”的 bean 从任何 bean 访问您的属性。不确定这是否是您需要的,因为无法在运行时修改 configProperties。但这是一种干净的方式,您不需要编写任何额外的类。

于 2014-07-15T06:17:19.000 回答