ehcache与spring整合

来源:互联网 发布:npm 修改为淘宝镜像 编辑:程序博客网 时间:2024/05/16 11:54
配置文件:
<cache:annotation-driven cache-manager="cacheManager" /><bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager"   p:cache-manager-ref="ehcache" /><bean id="ehcache" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"   p:config-location="classpath:ehcache.xml" />
使用举例:
1、
@Autowiredprivate CacheManager                  cacheManager;

Cache cache = cacheManager.getCache("PersonType");
2、
@Cacheable(value = "CommonCache_5min", key = "PersonType")