2

有没有人为 apache commons 数据库配置对象开发了动态重新加载机制?

4

2 回答 2

3

实际上这不是必需的,因为 DatabaseConfiguration 不会缓存数据库中的值。每次获取属性时都会执行一个请求。有一个 RFE 可以缓存这些值以提高性能,这确实需要重新加载机制。

https://issues.apache.org/jira/browse/CONFIGURATION-180

于 2011-07-24T21:13:13.457 回答
0

apache commons 数据库配置不支持缓存。

我扩展了 DatabaseConfiguration 以支持缓存,因此它不会一直访问我的数据库。至于重新加载,我会在需要的地方实例化我的配置,并在完成后将其丢弃。

MyConfig cfg = new MyConfig("jdbc/configdatabase");


public class MyConfig extends DatabaseConfiguration {

    private WeakHashMap<String,Object> cache = new WeakHashMap<String,Object>();

    public MyConfig(String datasourceString,String section) throws NamingException {
        this((DataSource) new InitialContext().lookup(datasourceString),section);
    }

    protected MyConfig(DataSource datasource,String section) {
        super(datasource, "COMMON_CONFIG","PROP_SECTION", "PROP_KEY", "PROP_VALUE",section);
    }

    @Override
    public Object getProperty(String key){
        Object cachedValue = cache.get(key);
        if (cachedValue != null){
            return cachedValue;
        }
        Object databaseValue = super.getProperty(key);
        cache.put(key, databaseValue);
        return databaseValue;

    }
}
于 2013-07-15T09:29:15.467 回答