0

我正在尝试使用弹簧缓存为我的方法实现缓存。问题是在第一次之后这个方法没有被执行,这意味着属性没有被加载。如果我删除 @Cacheable 注释,它工作正常。我的要求是,只要添加新属性,该方法就应该运行并加载属性,否则它应该从缓存中返回。

 @Cacheable("mycache")
public Properties loadPropertyFile() throws Throwable {
    Properties properties = new Properties();
    try {
        logger.debug("Loading properties.");
        if (this.locations != null) {

            for (Resource location : this.locations) {
                if (logger.isInfoEnabled()) {
                    logger.info("Loading properties file from " + location);
                }
                try {
                    properties = PropertiesLoaderUtils.loadAllProperties(location.getFilename());

                } catch (IOException ex) {
                    if (this.ignoreResourceNotFound) {
                        if (logger.isWarnEnabled()) {
                            logger.warn("Could not load properties from "
                                    + location + ": " + ex.getMessage());
                        }
                    } else {
                        throw ex;
                    }
                }
            }
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
    return properties;
}

XML 文件:

 <cache:annotation-driven />


<bean id="cacheManager" class="org.springframework.cache.support.SimpleCacheManager">
<property name="caches">
  <set>
    <bean class="org.springframework.cache.concurrent.ConcurrentMapCacheFactoryBean" p:name="mycache" />
  </set>
</property>

4

1 回答 1

0

代码正常工作:您配置Cacheable注释的方式实际上永远不会失效,因为没有条件触发驱逐。通常,您可以使用该condition参数并将 SPeL 表达式传递给它,但仍然无法检查底层文件是否已更改并有条件地执行方法体。

这种“缓存直到更改”的实现无法工作,因为在您实际重新加载文件(或检查其大小或时间戳等)之前,您不知道是否“添加了新属性” 。

如果定期重新加载是可接受的替代方案,您可以尝试 Apache Commons Configurations 的ReloadingFileBasedConfigurationBuilder或尝试使用 Spring 的@Scheduled.

于 2015-05-27T19:16:15.813 回答