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. classpath:myApp/myApp.properties を使用して File オブジェクトを作成するにはどうすればよいですか (絶対パスがわからないため)
  2. 新しい myApp.properties を [onChange メソッドで] PropetisUtil クラスにロード/渡すために、Spring を呼び出す/呼び出すにはどうすればよいですか。
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 アプリの場合、プロパティ ファイルを Web アプリのクラスパスの外に配置してください (Web サーバーがプロパティ ファイルをキャッシュする可能性があるため)。たとえば、WEB-INF/conf/myApp.properties

于 2013-01-02T06:04:13.077 に答える