`
azure2a
  • 浏览: 33171 次
  • 性别: Icon_minigender_1
  • 来自: 承德
社区版块
存档分类
最新评论

一个利用ehcache和AOP做的缓存切面类。

阅读更多
缓存操作类。
package cache;

import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import net.sf.ehcache.Cache;
import net.sf.ehcache.CacheManager;
import net.sf.ehcache.Element;

public class OACache {

private static Log logger = LogFactory.getLog(OACache.class);

private static Map<String,Cache> cacheMap=new ConcurrentHashMap<String,Cache>();

static{
CacheManager.create();
}

/**
* 取得cache
* @param cacheName
* @return
*/
public synchronized static Cache getCache(String cacheName){

Cache cache=cacheMap.get(cacheName);

if(cache!=null){
logger.debug("return");
return cache;
}
else
{
logger.debug("create");
cache = CacheManager.getInstance().getCache(cacheName);
cacheMap.put(cacheName,cache);
return cache;
}
}

/**
* 向cache中输入值
* @param cacheName
* @param id
* @param obj
*/
public synchronized static void putObject(String cacheName,String id,Object obj){
Element element=new Element(id,obj);

getCache(cacheName).put(element);
}

/**
* 从cache中取值。
* @param cacheName
* @param id
* @return
*/
public synchronized static Object getObject(String cacheName,String id){
Cache cache=getCache(cacheName);

try{
    return cache.get(id).getObjectValue();
}catch(NullPointerException e){
return null;
}
}

/**
* 从cache中删除值。
* @param cacheName
* @param id
* @return
*/
public synchronized static void removeObject(String cacheName,String id){
Cache cache=getCache(cacheName);

cache.remove(id);
}

/**
* 清除所有的缓存。
*/
public synchronized static void shutDownAllCache(){
CacheManager.getInstance().shutdown();
}

}
缓存切面类
package advice;

import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.aspectj.lang.ProceedingJoinPoint;

import util.string.StringUtil;
import cache.OACache;

public class CacheAdvice {

private static Log logger = LogFactory.getLog(CacheAdvice.class);

private List<String> cacheMethodList;
private Map<String,String> updateMethodList;

private String cacheName;

/**
* cache的名称,根据ehcache设置。
* @param cacheName
*/
public void setCacheName(String cacheName) {
this.cacheName = cacheName;
}
/**
* 需要缓存的方法名,
* @param cacheMethodList
*/
public void setCacheMethodList(List<String> cacheMethodList) {
this.cacheMethodList = cacheMethodList;
}
/**
* 当执行这些方法时,需要更新缓存。
* @param updateMethodList
*/
public void setUpdateMethodList(Map<String, String> updateMethodList) {
this.updateMethodList = updateMethodList;
}

/**
* 缓存。
* @param point
* @return
* @throws Throwable
*/
public Object cache(ProceedingJoinPoint point) throws Throwable{ 

//注意监视的对象如果有返回值本方法也要有返回值

String methodName  = point.getSignature().getName();
String targetName  = point.getTarget().getClass().getName();
    Object[] arguments = point.getArgs();
    Object result;
   
   
     if(needToUpdate(methodName)){
   
        String[] updateMethodArray=updateMethodList.get(methodName).split(",");
       
        for(String method:updateMethodArray){
       
          logger.debug("remove "+method.trim()+" from  cache!!");
         
      OACache.removeObject(cacheName,method.trim());      
        }
       
        return point.proceed();
          }
           else if(!needToCache(methodName))
           {
       
    logger.debug(targetName+"-"+methodName+" need not to cache!!");
   
    return point.proceed();
   
        }
           else
           {
           String cacheKey=getCacheKey(targetName,methodName,arguments);
          
           Map<String,Object> mapResult=(Map<String,Object>)OACache.getObject(cacheName,methodName);
          
           if(mapResult!=null){
          
           if(mapResult.get(cacheKey)!=null){
           logger.debug(cacheKey+" has already cached,load from cache!!");
          
           return mapResult.get(cacheKey);
           }
           else
           {
           result=point.proceed();
           mapResult.put(cacheKey,result);
          
           OACache.putObject(cacheName,methodName,mapResult);
           logger.debug("use old map and "+cacheKey+" caching!!");
          
           return result;
           }
           }
           else
           {
                       result=point.proceed();
          
           mapResult=new ConcurrentHashMap();
          
           mapResult.put(cacheKey,result);           
           OACache.putObject(cacheName,methodName,mapResult);
          
           logger.debug("make new map and "+cacheKey+" caching!!");
          
           return result;
           }
          
           }
   
}

/**
* 根据执行的类,方法名和参数返回cachekey。
* @param targetName
* @param methodName
* @param arguments
* @return
*/
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();
    }

/**
* 检测是否需要更新。
* @param methodName
* @return
*/
private boolean needToUpdate(String methodName){

if(updateMethodList.get(methodName)==null)
  {
return false;
  }
  else
  {
return true;
  }
}

/**
* 检测是否需要缓存。
* @param methodName
* @return
*/
private boolean needToCache(String methodName){
return StringUtil.inStr(methodName,cacheMethodList.toArray(new String[0]));
}

}
切面在spring中的设置。
<bean id="cacheAdvice" class="advice.CacheAdvice" scope="singleton" >

  <property name="cacheMethodList">
        <list>
          <value>findMessageReceiveByMessageTypeAndStaffid</value>
          <value>getCountBulletinReceiveByDeptid</value>
          <value>findBulletinReceiveByDeptid</value>
          <value>getCountMessageReceiveByMessageTypeAndStaffid</value>         
          <value>findNewMessageByStaffid</value>
          <value>getCountNewMessageByStaffid</value>
          <value>getCountMessageSentByTypeAndStaffid</value>
          <value>findMessageSentByMessageTypeAndStaffid</value>
        </list>
      </property>
     
      <property name="updateMethodList">
        <map>
          <entry key="saveMessage">
            <value>
            findMessageSentByMessageTypeAndStaffid,
            getCountMessageSentByTypeAndStaffid,
            findMessageReceiveByMessageTypeAndStaffid,
            getCountMessageReceiveByMessageTypeAndStaffid,
            findNewMessageByStaffid,
            getCountNewMessageByStaffid
            </value>
          </entry>
          <entry key="senderDel">
            <value>
            findMessageSentByMessageTypeAndStaffid,
            getCountMessageSentByTypeAndStaffid,
            findMessageReceiveByMessageTypeAndStaffid,
            getCountMessageReceiveByMessageTypeAndStaffid,
            findNewMessageByStaffid,
            getCountNewMessageByStaffid
            </value>
          </entry>
          <entry key="receiverDel">
            <value>
            findMessageSentByMessageTypeAndStaffid,
            getCountMessageSentByTypeAndStaffid,
            findMessageReceiveByMessageTypeAndStaffid,
            getCountMessageReceiveByMessageTypeAndStaffid,
            findNewMessageByStaffid,
            getCountNewMessageByStaffid
            </value>
          </entry>
        </map>
      </property>
     
      <property name="cacheName">
        <value>pagecache</value>
      </property>
     
    </bean>
分享到:
评论

相关推荐

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

    在本篇【Spring AOP+ehCache简单缓存系统解决方案】中,我们将探讨如何利用Spring AOP(面向切面编程)和ehCache框架来构建一个高效、简单的缓存系统,以提升应用程序的性能。ehCache是一款流行的开源Java缓存库,它...

    SpringAOP结合ehCache实现简单缓存实例

    在IT行业中,Spring AOP(面向切面编程)和EhCache是两个非常重要的概念,它们在提升应用程序性能和管理缓存方面发挥着关键作用。本文将深入探讨如何结合Spring AOP与EhCache实现一个简单的缓存实例,以便优化Java...

    Spring 与Ehcache实现基于方法的缓存

    在IT行业中,Spring框架是Java领域最广泛应用的轻量级框架之一,它为开发者提供了强大的依赖注入(DI)和面向切面编程(AOP)功能。Ehcache则是一款广泛使用的开源缓存解决方案,用于提高应用程序性能,减少数据库...

    Spring中AOP实现EHCache的整合(一)

    这时,我们可以自定义切面,利用Spring AOP的强大功能,编写更灵活的缓存策略。通过定义自己的切面,我们可以根据业务逻辑动态地决定何时、何地使用缓存,实现更精细化的缓存管理。 此外,为了监控和调试缓存,我们...

    spring + ehcache + redis两级缓存

    首先,**Spring** 是一个开源的应用框架,它提供了丰富的功能,包括依赖注入、AOP(面向切面编程)、事务管理等。在缓存管理方面,Spring 提供了 Spring Cache抽象层,可以方便地集成各种缓存实现,如Ehcache、...

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

    Spring AOP 和 EhCache 结合使用提供了一个简单而有效的缓存解决方案,主要目的是优化系统性能,减少对数据库的频繁访问。下面将详细解释这个解决方案的关键组成部分。 首先,EhCache 是一个广泛使用的开源 Java ...

    BoneCP连接池和Ehcache注解缓存整合到Spring

    4. **整合缓存**:使用Spring的AOP(面向切面编程)和Ehcache的注解,在需要缓存的方法上添加`@Cacheable`,在清除缓存的方法上添加`@CacheEvict`。 5. **测试验证**:编写测试用例,确保 BoneCP 能够正常提供数据库...

    AOP Cache源代码

    总的来说,这个"AOP Cache源代码"项目演示了如何利用Spring AOP和Ehcache构建一个灵活且高效的缓存系统。通过拦截器,我们可以将缓存逻辑与业务逻辑分离,保持代码的整洁和可维护性。同时,Ehcache提供了强大的缓存...

    ehcache缓存方法返回结果(一)-MethodCacheInterceptor

    MethodCacheInterceptor是基于AOP(面向切面编程)的一种缓存拦截器,它允许我们在方法调用前后插入特定的逻辑,例如在方法执行前检查缓存,如果存在结果则直接返回,否则执行方法并存储结果到缓存中。这种方式可以...

    EhCache缓存技术

    通过Spring的AOP(面向切面编程)支持,可以在方法调用级别轻松地添加缓存注解。在`ehcache.xml`配置文件中,`&lt;diskStore&gt;`元素设置磁盘存储路径,然后定义`&lt;cache&gt;`元素来配置特定的缓存实例,比如缓存的大小、过期...

    ehcache+spring demo 整合

    Spring 框架则是一个广泛应用的Java企业级开发框架,提供了包括依赖注入、事务管理、AOP(面向切面编程)在内的多种功能。将 Ehcache 整合到 Spring 中,可以方便地在Spring应用中使用缓存服务。 在"ehcache+spring...

    ehcache模糊批量移除缓存的方法

    Ehcache 是一个流行的 Java 开源缓存框架,配置简单、结构清晰、功能强大。通过注解 @Cacheable 可以快速添加方法结果到缓存。通过 @CacheEvict 可以快速清除掉指定的缓存。但是,@CacheEvict 注解使用的是 key-...

    ehcache需要的jar包

    - 面向切面编程(AOP)是Spring的一个核心特性,允许开发者在不修改业务代码的情况下,添加额外的功能,如日志、事务管理和缓存。 - 使用`@Cacheable`注解,可以在方法执行前检查是否有缓存的结果,如果有则直接...

    ehCache2.6.8

    在Web应用中,它可以与Spring的AOP(面向切面编程)结合,实现方法级别的缓存管理。 4. **源码分析**: - 对于开发者而言,源码提供了深入理解ehCache工作原理的机会,包括缓存策略、内存分配、数据序列化等方面的...

    aop例子aop例子

    结合EhCache,我们可以创建一个缓存切面,将结果缓存起来,避免重复计算: ```java @Aspect @Component public class CacheAspect { @Autowired private CacheManager cacheManager; @Around("execution(* ...

    ehcache-spring

    通过Spring AOP(面向切面编程)和Ehcache的结合使用,可以在Spring管理的应用中轻松实现数据缓存,提升应用性能。 首先,Ehcache是一个广泛使用的Java本地缓存框架,它能够缓存各种数据类型,如集合、对象等。使用...

    cglib-2.2.jar,ehcache-spring-annotations-1.1.2.jar

    当被代理的目标类没有实现接口时,Spring AOP会利用CGLIB动态生成一个子类来实现对目标类的代理。CGLIB通过字节码技术在运行时生成新的类,这样可以在不修改原有代码的情况下,增加新的功能或进行监控。`cglib-2.2....

    spring+ibatis+ehcache整合例子

    Spring是一个全面的企业级应用开发框架,它提供了一个容器来管理对象的生命周期和依赖关系,以及AOP(面向切面编程)功能。在本项目中,Spring作为核心框架,负责管理服务层(Service Layer)和数据访问层(DAO ...

    实战项目-AOP-cache

    在本实战项目"AOP-cache"中,我们将深入探讨如何利用面向切面编程(AOP)和Ehcache技术来实现高效的数据缓存处理。面向切面编程是一种编程范式,它允许开发者将关注点分离,比如日志、事务管理、性能监控等,从主...

Global site tag (gtag.js) - Google Analytics