springmvc+ehcache小案例

整合起来比较方便,这里记录一下防止以后忘记
ehcache.xml使用了该网站的内容:
http://tom-seed.iteye.com/blog/2104430

1、在springmvc的xml里面配置,整合ehcache
<cache:annotation-driven cache-manager="cacheManager" />
<bean id="cacheManagerFactory" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">
    <property name="configLocation" value="classpath:ehcache.xml" />
</bean>
<bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager">
    <property name="cacheManager" ref="cacheManagerFactory" />
</bean>
2、配置ehcache.xml
<!-- Ehcache2.x的变化(取自https://github.com/springside/springside4/wiki/Ehcache) -->  
<!-- 1)最好在ehcache.xml中声明不进行updateCheck -->  
<!-- 2)为了配合BigMemory和Size Limit,原来的属性最好改名 -->  
<!--   maxElementsInMemory->maxEntriesLocalHeap -->  
<!--   maxElementsOnDisk->maxEntriesLocalDisk -->  
<ehcache>  
<!-- <diskStore>==========当内存缓存中对象数量超过maxElementsInMemory时,将缓存对象写到磁盘缓存中(需对象实现序列化接口)  
<diskStore path="">==用来配置磁盘缓存使用的物理路径,Ehcache磁盘缓存使用的文件后缀名是*.data和*.index   -->
    <diskStore path="java.io.tmpdir"/>  

    <defaultCache  
           maxElementsInMemory="1000"  
           eternal="false"  
           timeToIdleSeconds="120"  
           timeToLiveSeconds="120"  
           overflowToDisk="false"/>  


     <cache 
         name="ehcache_test" 
         eternal="false" 
         maxElementsInMemory="100"
         overflowToDisk="false" 
         diskPersistent="false" 
         timeToIdleSeconds="0"
         timeToLiveSeconds="300" 
         memoryStoreEvictionPolicy="LRU" />
</ehcache>  
<!--  
name============cache的唯一标识(ehcache会把这个cache放到HashMap里)  
eternal===========缓存中对象是否永久有效,即是否永驻内存,true时将忽略timeToIdleSeconds和timeToLiveSeconds  
maxElementsOnDisk====磁盘缓存中最多可以存放的元素数量,0表示无穷大  
maxElementsInMemory==内存缓存中最多可以存放的元素数量,若放入Cache中的元素超过这个数值,则有以下两种情况  
    1)若overflowToDisk=true,则会将Cache中多出的元素放入磁盘文件中  
    2)若overflowToDisk=false,则根据memoryStoreEvictionPolicy策略替换Cache中原有的元素  
diskPersistent========默认为false,是否持久化磁盘缓存,当这个属性的值为true时,系统在初始化时会在磁盘中查找文件名为cache名称,后缀名为index的文件  
                     这个文件中存放了已经持久化在磁盘中的cache的index,找到后会把cache加载到内存  
                     要想把cache真正持久化到磁盘,写程序时注意执行net.sf.ehcache.Cache.put(Element element)后要调用flush()方法  
timeToIdleSeconds====缓存数据在失效前的允许闲置时间(单位:秒),仅当eternal=false时使用,默认值是0表示可闲置时间无穷大,此为可选属性  
                     即访问这个cache中元素的最大间隔时间,若超过这个时间没有访问此Cache中的某个元素,那么此元素将被从Cache中清除  
timeToLiveSeconds====缓存数据在失效前的允许存活时间(单位:秒),仅当eternal=false时使用,默认值是0表示可存活时间无穷大  
                     即Cache中的某元素从创建到清楚的生存时间,也就是说从创建开始计时,当超过这个时间时,此元素将从Cache中清除  
diskExpiryThreadIntervalSeconds==磁盘缓存的清理线程运行间隔,默认是120秒  
diskSpoolBufferSizeMB============设置DiskStore(磁盘缓存)的缓存区大小,默认是30MB  
memoryStoreEvictionPolicy========内存存储与释放策略,即达到maxElementsInMemory限制时,Ehcache会根据指定策略清理内存  
                                 共有三种策略,分别为LRU(最近最少使用)、LFU(最常用的)、FIFO(先进先出)  
-->
3、controller方法
@Controller
public class Ehcache_test {

    @Autowired
    PersionMapper p_dao;

    @RequestMapping("person_test")
    @ResponseBody
    public Object person_test(int key){
        return p_dao.selectAllPersion(key).size();
    }
}
3、dao层方法
@Repository
public class PersionMapper {
    @Resource(name = "sqlSessionTemplate")
    private SqlSessionTemplate sqlSessionTemplate;
//key不是必须的
    @Cacheable(value = "ehcache_test",key="'person'+#key")  
    public List<Persion> selectAllPersion(int key){
        return sqlSessionTemplate.selectList("Persion.selectAllPersion");
    }
}
//清空该value的缓存
@CacheEvict(value="ehcache_test",allEntries=true)
    public int insertPersionByEchache(Persion p,String key){
        return sqlSessionTemplate.insert("Persion.insertByEhcache",p);
    }
//根据key删除
@CacheEvict(value="ehcache_test",key="'person'+#key")
    public int insertPersionByEchache2(Persion p,int key){
        return sqlSessionTemplate.insert("Persion.insertByEhcache",p);
    }
//根据条件和key清缓存
@CacheEvict(value="ehcache_test",condition="#p.getId()>1000",key="'person'+#key")
    public int insertPersionByEchache3(Persion p,int key){
        return sqlSessionTemplate.insert("Persion.insertByEhcache",p);
    }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值