我正在尝试使用spring cache实现对我的方法的缓存。问题是,第一次没有执行此方法,这意味着属性没有被加载。如果我删除@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>
答案 0 :(得分:0)
代码正常工作:您配置Cacheable
注释的方式实际上永远不会失效,因为没有条件可以触发驱逐。通常,您可以使用condition
参数并将SPeL表达式传递给它,但仍然无法检查基础文件是否已更改并有条件地执行方法体。
“缓存直到更改”的实现无法工作,因为您不知道“新属性是否已添加”,直到您实际重新加载文件(或检查其大小或时间戳,无论)。
如果定期重新加载是一种可接受的替代方法,您可以尝试使用Apache Commons Configurations ReloadingFileBasedConfigurationBuilder或试用Spring的@Scheduled
。