码迷,mamicode.com
首页 > 编程语言 > 详细

Ehcache学习总结二: Ehcache+Spring+Mybaits整合

时间:2016-06-07 16:12:23      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

这里主要介绍Ehcache相关配置,Spring和Mybaits的配置这里只是简单介绍

1、项目目录结构展示

 技术分享

2、Ehcache需要的jar包

技术分享

  spring-context-support-3.2.7.RELEASE.jar  Spring的这个包主要是用于支持一些其他框架,所以必需添加,Spring和Mybaits一些其他jar包根据需要导入

 

3、在src目录加入Ehcache.xml文件

<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
          xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd">

     <!-- 默认缓存 -->  
    <defaultCache  
           maxElementsInMemory="1000"  
           eternal="false"  
           timeToIdleSeconds="120"  
           timeToLiveSeconds="120"  
           overflowToDisk="false"/>  
             
    <!-- 指定名字缓存缓存 -->      
    <cache name="studyCache"   
           maxElementsInMemory="1000"   
           eternal="false"
           timeToIdleSeconds="120"  
           timeToLiveSeconds="120"  
           overflowToDisk="false"   
           memoryStoreEvictionPolicy="LRU"/> 
           
</ehcache>

 

4、在Spring配置文件 applicationcontext.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>

 

5、需要缓存的方法前加入Ehcache注解

@Cacheable(value="studyCache")
    public List<TradeBlotter> qryTradeBlotterList(String appNo, String opId,String fundAcct, String fundId) {
        return appTradeBlotterDao.selectTradeBlotterList(appNo, opId, fundAcct, fundId);
    }

 

Ehcache学习总结二: Ehcache+Spring+Mybaits整合

标签:

原文地址:http://www.cnblogs.com/lovexinjie/p/5567290.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!