`

spring2.5整合ehcache2.0使用

阅读更多
                      
在Spring中运用EHCache


    需要使用Spring来实现一个Cache简单的解决方案,具体需求如下:使用任意一个现有开源Cache Framework,要求可以Cache系统中Service或则DAO层的get/find等方法返回结果,如果数据更新(使用Create/update/delete方法),则刷新cache中相应的内容
    根据需求,计划使用Spring AOP + ehCache来实现这个功能。AOP嘛,少不了拦截器,先创建一个实现了MethodInterceptor接口的拦截器,用来拦截Service/DAO的方法调用,拦截到方法后,搜索该方法的结果在cache中是否存在,如果存在,返回cache中的缓存结果,如果不存在,返回查询数据库的结果,并将结果缓存到cache中
    MethodCacheInterceptor.java
   package com.co.cache.ehcache;    
   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.commons.logging.Log;    
   import org.apache.commons.logging.LogFactory;    
   import org.springframework.beans.factory.InitializingBean;    
   import org.springframework.util.Assert;    
   public class MethodCacheInterceptor implements MethodInterceptor,
   InitializingBean{
       private static final Log logger = LogFactory.getLog(MethodCacheInterceptor.class);
       private Cache cache;
       public void setCache(Cache cache) {    
           this.cache = cache;    
       }
       public MethodCacheInterceptor() {    
            super();    
       }
       /**   
        * 拦截Service/DAO的方法,并查找该结果是否存在,如果存在就返回cache中的值,   
         * 否则,返回数据库查询结果,并将查询结果放入cache   
       */
       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.debug("Find object from cache is " + cache.getName());
       String cacheKey = getCacheKey(targetName, methodName, arguments);
       Element element = cache.get(cacheKey);
       if (element == null) {    
          logger.debug("Hold up method , Get method result and create cache........!");    
          result = invocation.proceed();    
          element = new Element(cacheKey, (Serializable) result);    
          cache.put(element);    
       }
       return element.getValue();
     }
    /**   
     * 获得cache key的方法,cache key是Cache中一个Element的唯一标识   
      * cache key包括 包名+类名+方法名,如 com.co.cache.service.UserServiceImpl.getAllUser   
     */
      private String getCacheKey(String targetName, String methodName, Object[] arguments) { 
       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();    
     }
    
     /**   
       * implement InitializingBean,检查cache是否为空   
        */    
       public void afterPropertiesSet() throws Exception {    
            Assert.notNull(cache, "Need a cache. Please use setCache(Cache) create it.");    
       }    
  
   }

  上面的代码中可以看到,在方法public Object invoke(MethodInvocation invocation) 中,完成了搜索Cache/新建cache的功能
   Element element = cache.get(cacheKey);
   这句代码的作用是获取cache中的element,如果cacheKey所对应的element不存在,将会返回一个null值
    result = invocation.proceed();
    这句代码的作用是获取所拦截方法的返回值,详细请查阅AOP相关文档。
    随后,再建立一个拦截器MethodCacheAfterAdvice,作用是在用户进行create/update/delete操作时来刷新/remove相关cache内容,这个拦截器实现了AfterReturningAdvice接口,将会在所拦截的方法执行后执行在public void afterReturning(Object arg0, Method arg1, Object[] arg2, Object arg3)方法中所预定的操作

     package com.co.cache.ehcache;
    import java.lang.reflect.Method;
    import java.util.List;
    import net.sf.ehcache.Cache;
    import org.apache.commons.logging.Log;    
    import org.apache.commons.logging.LogFactory;    
    import org.springframework.aop.AfterReturningAdvice;    
    import org.springframework.beans.factory.InitializingBean;    
    import org.springframework.util.Assert;
    public class MethodCacheAfterAdvice implements AfterReturningAdvice, InitializingBean    
{
    private static final Log logger = LogFactory.getLog(MethodCacheAfterAdvice.class);
    private Cache cache;
    public void setCache(Cache cache) {    
       this.cache = cache;    
    }
    public MethodCacheAfterAdvice() {    
      super();    
    }
    public void afterReturning(Object arg0, Method arg1, Object[] arg2, Object arg3) throws Throwable {    
         String className = arg3.getClass().getName();    
         List list = cache.getKeys();    
         for(int i = 0;i<list.size();i++){    
         String cacheKey = String.valueOf(list.get(i));    
         if(cacheKey.startsWith(className)){    
            cache.remove(cacheKey);    
            logger.debug("remove cache " + cacheKey);    
         }    
     }    
  }
   public void afterPropertiesSet() throws Exception {    
        Assert.notNull(cache, "Need a cache. Please use setCache(Cache) create it.");    
  }    
  
}

  上面的代码很简单,实现了afterReturning方法实现自AfterReturningAdvice接口,方法中所定义的内容将会在目标方法执行后执行,在该方法中 的作用是获取目标class的全名,如:com.co.cache.test.TestServiceImpl,然后循环cache的key list,remove cache中所有和该class相关的element。
   String className = arg3.getClass().getName();
   随后,开始配置ehCache的属性,ehCache需要一个xml文件来设置ehCache相关的一些属性,如最大缓存数量、cache刷新的时间等等.
   ehcache.xml
   <ehcache>    
         <diskStore path="c:\\myapp\\cache"/>    
         <defaultCache   
                   maxElementsInMemory="1000"    
                   eternal="false"    
                   timeToIdleSeconds="120"    
                   timeToLiveSeconds="120"    
                    overflowToDisk="true"    
          />    
         <cache name="DEFAULT_CACHE"    
                    maxElementsInMemory="10000"    
                    eternal="false"    
                    timeToIdleSeconds="300000"    
                    timeToLiveSeconds="600000"    
                    overflowToDisk="true"    
         />    
    </ehcache>

    配置每一项的详细作用不再详细解释,有兴趣的请google下  ,这里需要注意一点defaultCache标签定义了一个默认的Cache,这个Cache是不能删除的,否则会抛出No default cache is configured异常。另外,由于使用拦截器来刷新Cache内容,因此在定义cache生命周期时可以定义较大的数值,timeToIdleSeconds="300000" timeToLiveSeconds="600000",好像还不够大?
    然后,在将Cache和两个拦截器配置到Spring,这里没有使用2.0里面AOP的标签。
cacheContext.xml
   <?xml version="1.0" encoding="UTF-8"?>    
   <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">    
     <beans>    
       <!-- 引用ehCache的配置 -->    
       <bean id="defaultCacheManager" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">    
            <property name="configLocation">    
                 <value>classpath:ehcache.xml</value>    
            </property>    
        </bean>    
  
       <!-- 定义ehCache的工厂,并设置所使用的Cache name -->    
       <bean id="ehCache" class="org.springframework.cache.ehcache.EhCacheFactoryBean">    
             <property name="cacheManager">    
                  <ref local="defaultCacheManager"/>    
             </property>    
             <property name="cacheName">    
                  <value>DEFAULT_CACHE</value>    
             </property>    
        </bean>    
  
        <!-- find/create cache拦截器 -->    
        <bean id="methodCacheInterceptor" class="com.co.cache.ehcache.MethodCacheInterceptor">    
            <property name="cache">    
                <ref local="ehCache" />    
            </property>    
         </bean>    
        <!-- flush cache拦截器 -->    
       <bean id="methodCacheAfterAdvice" class="com.co.cache.ehcache.MethodCacheAfterAdvice">    
           <property name="cache">    
                 <ref local="ehCache" />    
           </property>    
       </bean>    
  
      <bean id="methodCachePointCut" class="org.springframework.aop.support.RegexpMethodPointcutAdvisor">            <property name="advice">    
                <ref local="methodCacheInterceptor"/>    
          </property>    
          <property name="patterns">    
                   <list>    
                       <value>.*find.*</value>    
                       <value>.*get.*</value>    
                   </list>    
          </property>    
       </bean>    
        <bean id="methodCachePointCutAdvice" class="org.springframework.aop.support.RegexpMethodPointcutAdvisor">             <property name="advice">    
             <ref local="methodCacheAfterAdvice"/>    
           </property>    
           <property name="patterns">    
              <list>    
                <value>.*create.*</value>    
                <value>.*update.*</value>    
                <value>.*delete.*</value>    
              </list>    
           </property>    
       </bean>    
   </beans>  

   上面的代码最终创建了两个"切入点",methodCachePointCut和methodCachePointCutAdvice,分别用于拦截不同方法名的方法,可以根据需要任意增加所需要拦截方法的名称。
需要注意的是

    <bean id="ehCache" class="org.springframework.cache.ehcache.EhCacheFactoryBean">    
        <property name="cacheManager">    
             <ref local="defaultCacheManager"/>    
        </property>    
        <property name="cacheName">    
             <value>DEFAULT_CACHE</value>    
        </property>    
   </bean>

   如果cacheName属性内设置的name在ehCache.xml中无法找到,那么将使用默认的cache(defaultCache标签定义).
   事实上到了这里,一个简单的Spring + ehCache Framework基本完成了,为了测试效果,举一个实际应用的例子,定义一个TestService和它的实现类TestServiceImpl,里面包含两个方法getAllObject()和updateObject(Object Object),具体代码如下
    TestService.java
    package com.co.cache.test;
    import java.util.List;
    public interface TestService {
           public List getAllObject();
           public void updateObject(Object Object);
    }
   
    TestServiceImpl.java
    package com.co.cache.test;
    import java.util.List; 
    public class TestServiceImpl implements TestService{
          public List getAllObject() {    
           System.out.println("---TestService:Cache内不存在该element,查找并放入Cache!");    
          return null;    
          }
          public void updateObject(Object Object) {    
               System.out.println("---TestService:更新了对象,这个Class产生的cache都将被remove!");    
          }    
     }  
  
     使用Spring提供的AOP进行配置
      applicationContext.xml
     <?xml version="1.0" encoding="UTF-8"?>    
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">  
      <beans>    
         <import resource="cacheContext.xml"/>    
         <bean id="testServiceTarget" class="com.co.cache.test.TestServiceImpl"/>    
  
        <bean id="testService" class="org.springframework.aop.framework.ProxyFactoryBean">    
              <property name="target">    
                   <ref local="testServiceTarget"/>    
              </property>    
              <property name="interceptorNames">    
                  <list>    
                      <value>methodCachePointCut</value>    
                      <value>methodCachePointCutAdvice</value>    
                  </list>    
              </property>    
        </bean>    
     </beans>  
    
     这里一定不能忘记import cacheContext.xml文件,不然定义的两个拦截器就没办法使用了。

      最后,写一个测试的代码
      MainTest.java
     TestService testService = (TestService)context.getBean("testService");
      System.out.println("1--第一次查找并创建cache");    
      testService.getAllObject();
      System.out.println("2--在cache中查找");    
      testService.getAllObject();
      System.out.println("3--remove cache");    
      testService.updateObject(null);
      System.out.println("4--需要重新查找并创建cache");    
      testService.getAllObject(); 
      运行,结果如下
      1--第一次查找并创建cache    
       ---TestService:Cache内不存在该element,查找并放入Cache!    
       2--在cache中查找    
       3--remove cache    
          ---TestService:更新了对象,这个Class产生的cache都将被remove!    
      4--需要重新查找并创建cache    
         ---TestService:Cache内不存在该element,查找并放入Cache!  


      大功告成  .可以看到,第一步执行getAllObject(),执行TestServiceImpl内的方法,并创建了cache,在第二次执行getAllObject()方法时,由于cache有该方法的缓存,直接从cache中get出方法的结果,所以没有打印出TestServiceImpl中的内容,而第三步,调用了updateObject方法,和TestServiceImpl相关的cache被remove,所以在第四步执行时,又执行TestServiceImpl中的方法,创建Cache。


















分享到:
评论

相关推荐

    spring3整合EhCache注解实例

    spring3整合EhCache注解实例

    Spring4 整合EhCache实现 页面缓存 零配置

    在本文中,我们将深入探讨如何使用Spring4框架与EhCache进行整合,以实现零配置的页面缓存功能。EhCache是一个广泛使用的开源Java缓存解决方案,它提供了高效的内存和磁盘缓存机制,有助于提升应用程序性能。通过...

    Spring 2.5 jar 所有开发包及完整文档及项目开发实例

    13) spring-mock.jar需spring-core.jar,spring-beans.jar,spring-dao.jar,spring-context.jar,spring-jdbc.jarspring2.0和spring2.5及以上版本的jar包区别Spring 2.5的Jar打包 在Spring 2.5中, Spring Web MVC...

    SpringBoo2.x,整合Ehcache3.x

    Spring Boot 2.x版本可以与Ehcache 3.x版本成功整合,下面详细介绍相关的知识点。 首先,整合Spring Boot与Ehcache 3.x涉及到依赖配置。在Maven项目中,需要添加以下依赖到`pom.xml`文件中: ```xml ...

    整合spring 和ehcache

    配置ehcache缓存,存储内存的设置,与spring 的整合等

    Spring Boot整合EhCache的步骤详解

    通过以上步骤,我们就成功地将EhCache整合到了Spring Boot应用中。EhCache不仅提升了数据访问速度,还降低了数据库的压力,是构建高性能Web应用的理想选择。在实际开发中,可以根据具体需求调整缓存策略,如缓存更新...

    spring2.5 api

    Spring 2.5 还包含了对其他方面的改进,如对 Quartz 和 Commons Job Scheduling 的支持,以及对缓存框架如 EhCache 的集成等。 总之,Spring 2.5 API 提供了一系列创新特性和改进,极大地提高了开发效率和代码的可...

    spring整合EhCache 的简单例子

    Spring 整合 EhCache 是一个常见的缓存管理方案,它允许我们在Spring应用中高效地缓存数据,提高系统性能。EhCache 是一个开源、基于内存的Java缓存库,适用于快速、轻量级的数据存储。现在我们来详细探讨如何在...

    spring2.5参考手册(spring-reference.pdf)

    根据提供的信息来看,这份文档是关于Spring 2.5版本的...综上所述,Spring 2.5参考手册涵盖了Spring框架的核心特性和新功能,并提供了详细的配置指南和最佳实践建议,是Java开发者学习和使用Spring框架的重要参考资料。

    spring整合EhCache 基于注解的方式

    本例子主要讲解ehcache的配置使用。采用了java配置和xml配置两种方式。主要用于学习。 使用java配置时将SpringTestCase.java 文件中的@ContextConfiguration(locations = { "classpath:applicationContext.xml" }) ...

    spring3.2+ehcache 注解使用

    在本文中,我们将深入探讨如何在Spring 3.2框架中使用Ehcache注解进行缓存管理。Ehcache是一种流行的Java缓存解决方案,它能够显著提高应用程序的性能,尤其是在处理频繁读取但更新不频繁的数据时。Spring 3.2引入了...

    Spring与ehcache结合使用

    ### Spring与ehcache结合使用详解 #### 一、前言 在现代软件开发中,缓存技术被广泛应用于提高应用程序的性能。其中,Spring框架因其灵活性和强大的功能,在Java领域得到了广泛应用;而ehcache作为一款高性能、...

    spring整合ehcache的完整用例

    通过以上步骤,你就可以在Spring应用中成功整合并使用Ehcache作为缓存机制。在`ehcacheDemo`项目中,你可以找到具体的代码示例,包括配置文件、服务类以及相关的测试用例,帮助你理解和实践这一过程。注意,实际应用...

    spring整合ehCache

    Spring整合EhCache是将EhCache作为一个缓存解决方案与Spring框架进行集成,以提高应用程序的性能和效率。EhCache是一款开源、轻量级的Java缓存库,广泛用于缓存中间件,以减少数据库访问,提升系统响应速度。 在...

    Spring AOP+ehCache简单缓存系统解决方案

    为了在Spring中使用ehCache,我们需要添加相应的依赖,并配置Spring AOP以拦截需要缓存的方法。在Spring的配置文件中,我们可以使用`&lt;aop:config&gt;`和`&lt;cache:annotation-driven&gt;`标签来启用AOP和缓存注解支持。然后...

    Struts2+Spring2.5+Hibernate3+Freemarker框架整合

    整合S2SH+Freemarker+oscache,后台用Spring管理各个bean,Hibernate做数据库持久化,viewer用Freemarker。整合中对Struts2,Hibernate,Spring都采用Annotation进行注解类。

    Spring Boot 整合 Ehcache.md

    springboot整合Encache,这篇文章是看松哥整理的。不积硅步无以至千里,加油,一起学习。

    Struts2 + Spring 2.5 + Hibernate 3.3 整合(实际使用项目,version1)

    此项目整合了目前主流和最前源的web开发技术:采用ehcache实现二级缓存(包含查询缓存);用sf4j及logback(log4j的升级版)记录日志;proxool(据说是dbcp和c3p0三者中最优秀的)做连接池;使用jquery的ajax实现仿...

    Spring整合EhCache详细教程(史上最全)

    ### Spring整合EhCache详细教程 #### Spring缓存抽象与核心思想 在开始Spring整合EhCache之前,首先需要理解Spring缓存的核心概念及其抽象机制。Spring框架本身并不提供具体的缓存实现,但它提供了一套统一的缓存...

Global site tag (gtag.js) - Google Analytics