spring ehcache 的配置
1.引入ehcache-1.2.4.jar
2.引入ehcache.xml
在dataAccessContext-local.xml中填写
<!-- ====================== DEFINITIONS OF CACHE METHOD ======================= --><bean id="cacheManager" name="code"><ehcache><!—设置缓存文件 .data 的创建路径。 如果该路径是 Java 系统参数,当前虚拟机会重新赋值。 下面的参数这样解释: user.home – 用户主目录 user.dir – 用户当前工作目录 java.io.tmpdir – 默认临时文件路径,就是在tomcat的temp目录 --> <diskStore path="java.io.tmpdir"/> <!—缺省缓存配置。CacheManager 会把这些配置应用到程序中。 下列属性是 defaultCache 必须的: maxInMemory - 设定内存中创建对象的最大值。 eternal - 设置元素(译注:内存中对象)是否永久驻留。如果是,将忽略超 时限制且元素永不消亡。 timeToIdleSeconds - 设置某个元素消亡前的停顿时间。 也就是在一个元素消亡之前,两次访问时间的最大时间间隔值。 这只能在元素不是永久驻留时有效(译注:如果对象永恒不灭,则 设置该属性也无用)。 如果该值是 0 就意味着元素可以停顿无穷长的时间。 timeToLiveSeconds - 为元素设置消亡前的生存时间。 也就是一个元素从构建到消亡的最大时间间隔值。 这只能在元素不是永久驻留时有效。 overflowToDisk - 设置当内存中缓存达到 maxInMemory 限制时元素是否可写到磁盘 上。 --> <!--timeToLiveSeconds的时间一定要大于等于timeToIdleSeconds的时间按--> <defaultCache maxElementsInMemory="10000" eternal="false" timeToIdleSeconds="120" timeToLiveSeconds="120" overflowToDisk="true" /> <cache name="WAPCACHE" //cache name maxElementsInMemory="10000" //内存中存储的对象的个数 eternal="false" //cache中的对象是否过期,缺省为过期(按照配置中的时间),如果改为true,表示该对象永远不过期 timeToIdleSeconds="1800" //对象限制多少秒过期 timeToLiveSeconds="3600" //对象存活多少秒过期 overflowToDisk="true" //对象在内存中达到最大个数的时候,是否写入硬盘 /></ehcache>
<!-- ========================= Cache WAP FACADE ========================================== --><bean id="methodCacheInterceptor" /></property></bean>//注:methodCacheInterceptor拦截器实现了org.aopalliance.intercept.MethodInterceptor接口。//一旦运行起来,它首先检查被拦截方法是否被配置为可缓存的。这将可选择性的配置想要缓存的 bean 方法,只要调用的方法配置为可缓存,拦截器将为该方法生成 cache key 并检查该方法返回的结果是否已缓存。//如果已缓存,就返回缓存的结果,否则再次调用被拦截方法,并缓存结果供下次调用。//如果想对bean中的一部分方法进行缓存,如对一些Bean的所有get方法进行缓存,需要在你的spring配置文件中加入如下代码:<bean id="methodCachePointCut" ref="realPageDao"/><property name="interceptorNames"><list><value>methodCachePointCut</value></list></property></bean><bean id="columnDao" ref="realColumnDao"/><property name="interceptorNames"><list><value>methodCachePointCut</value></list></property></bean><bean id="topAdsDao" ref="realTopAdsDao"/><property name="interceptorNames"><list><value>methodCachePointCut</value></list></property></bean><bean id="bookmarkDao" ref="realBookmarkDao"/><property name="interceptorNames"><list><value>methodCachePointCut</value></list></property></bean>
package com.lenovomobile.wap.cache;import java.io.Serializable;import net.sf.ehcache.Cache;import net.sf.ehcache.Element;import org.aopalliance.intercept.MethodInterceptor;import org.aopalliance.intercept.MethodInvocation;import org.apache.log4j.Logger;import org.springframework.beans.factory.InitializingBean;import org.springframework.util.Assert;/** * @author Administrator * * TODO 缓存处理 */public class MethodCacheInterceptor implements MethodInterceptor,InitializingBean {private Logger logger = Logger.getLogger("Method-Cache-Inegceptor");private Cache wapCache;/** * 设置缓存名 */public void setWapCache(Cache wapCache) {this.wapCache = wapCache;} /** * 主方法 * 如果某方法可被缓存就缓存其结果 * 方法结果必须是可序列化的(serializable) */public Object invoke(MethodInvocation invocation) throws Throwable {String targetName = invocation.getThis().getClass().getName();String methodName = invocation.getMethod().getName();Object[] arguments = invocation.getArguments();Object result;// logger.info("looking for method result in cache");String cacheKey = getCacheKey(targetName, methodName, arguments);logger.info("cache key" + cacheKey);Element element = wapCache.get(cacheKey);if (element == null) {// call target/sub-interceptorlogger.info("calling intercepted method");result = invocation.proceed();// cache method resultlogger.info("caching result");element = new Element(cacheKey, (Serializable) result);wapCache.put(element);}return element.getValue();} /** * 检查是否提供必要参数。 */public void afterPropertiesSet() throws Exception {Assert.notNull(wapCache,"A cache is required. Use setCache(Cache) to provide one.");}/** * creates cache key: targetName.methodName.argument0.argument1... */private String getCacheKey(String targetName, String methodName,Object[] arguments) throws Exception {StringBuffer sb = new StringBuffer();sb.append(targetName).append(".").append(methodName);if ((arguments != null) && (arguments.length != 0)) {for (int i = 0; i < arguments.length; i++) {sb.append(".").append(arguments[i]);}}return sb.toString();}}