禁用通过外部属性的spring方法缓存

时间:2013-01-15 11:14:25

标签: java spring ehcache

我使用ehcache和注释驱动配置配置了spring方法缓存。

但是,我希望能够从我们在应用程序中使用的配置文件中禁用它。

我的第一个想法是,如果禁用方法缓存,则不使用参数调用net.sf.ehcache.CacheManager.CacheManager()。抛出异常:

java.lang.IllegalArgumentException: loadCaches must not return an empty Collection
at org.springframework.util.Assert.notEmpty(Assert.java:268)
at org.springframework.cache.support.AbstractCacheManager.afterPropertiesSet(AbstractCacheManager.java:49)

我的第二个想法是使用默认数据配置net.sf.ehcache.CacheManager.CacheManager(),以便不使用缓存(maxElementsInMemory 0等)。但是仍然使用缓存,这不是我想要的。

有一个属性net.sf.ehcache.disabled,但我不想禁用也使用ehcache的hibernate缓存。

Q如何将所有内容配置为使用spring方法缓存但是从外部配置文件中禁用它?我不想修改应用程序上下文,也不想修改启用/禁用方法缓存的代码。只能修改我们在应用程序中使用的配置文件。

2 个答案:

答案 0 :(得分:8)

我要找的是NoOpCacheManager

为了使其工作,我从xml bean创建切换到工厂

我做了如下的事情:

@Bean
public CacheManager cacheManager() {
    final CacheManager cacheManager;        
    if (this.methodCacheManager != null) {
        final EhCacheCacheManager ehCacheCacheManager = new EhCacheCacheManager();
        ehCacheCacheManager.setCacheManager(this.methodCacheManager);
        cacheManager = ehCacheCacheManager;
    } else {
        cacheManager = new NoOpCacheManager();
    }

    return cacheManager;
}

答案 1 :(得分:3)

您可以使用spring profile来启用(或不启用)弹簧缓存支持

<beans profile="withCache">
   <cache:annotation-driven />
</beans>