- 浏览: 33171 次
- 性别:
- 来自: 承德
-
最新评论
-
zq726726:
请问 如果用spring 的话 怎么加配置???
Hibernate通用Dao设计。 -
woshihongshua:
一个自己写的图像操作包,实现了验证码识别等很多功能。 -
azure2a:
还真没试过,不过可以用上面的代码试试,不然估计要用图片二值化等 ...
趣味编程,利用zxing包设计QR码编码和解码程序。 -
qalong:
想问一下,如果QR的图片不清晰的时候,可以正常的解析吗?
趣味编程,利用zxing包设计QR码编码和解码程序。 -
lshoo:
JPA2的资料好啊!
学习Hibernate映射必读,JavaOne2009-JPA2映射的神秘之旅。
缓存操作类。
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>
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>
发表评论
-
Hibernate通用Dao设计。
2011-07-19 16:15 3235hibernate的通用Dao简化了程序,增加了开发过程, ... -
趣味编程,利用zxing包设计QR码编码和解码程序。
2011-04-20 23:03 24921、什么是RQ码? QR码是二维条码的一种,1994年由日 ... -
利用JEXL实现实时执行对象方法。
2011-02-14 16:50 1396使用情况:有时候我们在编译时并不知道可能执行什么方法,或者我们 ... -
cglib实现无接口代理
2011-02-13 22:52 1909使用情况:有时候我们需要为一个类建立代理对象,当执行原类的 ... -
学习Hibernate映射必读(二),JavaOne2009-JPA2新特征。
2011-02-10 19:46 1012JavaOne2009-JPA2新特征介绍了JPA2的一些 ... -
Extjs Grid 带分页多选时的某种解决方案。
2011-02-10 19:42 4230使用情况:使用Extjs的Grid时使用远程分页时有一个问 ... -
学习Hibernate映射必读,JavaOne2009-JPA2映射的神秘之旅。
2011-02-07 12:51 949JavaOne2009-JPA2映射的神秘之旅,学习Hib ... -
使用HTMLPARSER和HTTPCLIENT制作网络爬虫,附赠相关技术文档。
2011-02-06 17:05 2026利用HTMLPARSER和HTTPCLIENT制作的网络爬 ... -
Java模式速查手册
2011-02-05 16:22 1169自己按照阎宏《Java与模 ... -
一个自己写的图像操作包,实现了验证码识别等很多功能。
2011-02-05 00:03 2062自己设计的图像操作包,实现很多功能。 包括三个类。 一、Ima ... -
一个文件操作类。
2009-12-12 14:21 317一个文件操作类,使用 ... -
循环链表
2009-11-13 09:54 58Java与算法的课后题,实现一个循环链表。 public c ... -
JAVA与模式读书笔记。
2009-10-06 11:08 127JAVA与模式读书笔记,自己读Java与模式时总结的书上的一些 ... -
呵呵,基础知识复习-类加载顺序。
2009-09-29 09:36 76有些基础知识其实自己也是很模糊,老是搞不清,比如一个类里的 ... -
自己设计的简单的验证框架。
2009-09-25 12:07 149自己设计的一个简单的验证框架,参照SpringSecrity。 ... -
cglib实现无接口代理
2009-09-24 11:29 182代理类。 package util.proxy; impor ... -
自己做的一组字符串操作方法,可能会用上。
2009-09-24 11:29 1078不过都是用的String效率可能不太高。 package ut ... -
用javamail发邮件
2009-09-24 11:26 1118利用javamail发邮件,可以发送普通邮件,带附件和图片的邮 ... -
图片的操作。
2009-09-24 11:25 110图片的操作类,实现剪切,缩放,旋转,水印,滤镜,未完成,有兴趣 ... -
线程池实现网络抓取器.
2009-09-24 11:24 54利用线程池实现的网络抓取工具,相似于google的功能,当然可 ...
相关推荐
在本篇【Spring AOP+ehCache简单缓存系统解决方案】中,我们将探讨如何利用Spring AOP(面向切面编程)和ehCache框架来构建一个高效、简单的缓存系统,以提升应用程序的性能。ehCache是一款流行的开源Java缓存库,它...
在IT行业中,Spring AOP(面向切面编程)和EhCache是两个非常重要的概念,它们在提升应用程序性能和管理缓存方面发挥着关键作用。本文将深入探讨如何结合Spring AOP与EhCache实现一个简单的缓存实例,以便优化Java...
在IT行业中,Spring框架是Java领域最广泛应用的轻量级框架之一,它为开发者提供了强大的依赖注入(DI)和面向切面编程(AOP)功能。Ehcache则是一款广泛使用的开源缓存解决方案,用于提高应用程序性能,减少数据库...
这时,我们可以自定义切面,利用Spring AOP的强大功能,编写更灵活的缓存策略。通过定义自己的切面,我们可以根据业务逻辑动态地决定何时、何地使用缓存,实现更精细化的缓存管理。 此外,为了监控和调试缓存,我们...
首先,**Spring** 是一个开源的应用框架,它提供了丰富的功能,包括依赖注入、AOP(面向切面编程)、事务管理等。在缓存管理方面,Spring 提供了 Spring Cache抽象层,可以方便地集成各种缓存实现,如Ehcache、...
Spring AOP 和 EhCache 结合使用提供了一个简单而有效的缓存解决方案,主要目的是优化系统性能,减少对数据库的频繁访问。下面将详细解释这个解决方案的关键组成部分。 首先,EhCache 是一个广泛使用的开源 Java ...
4. **整合缓存**:使用Spring的AOP(面向切面编程)和Ehcache的注解,在需要缓存的方法上添加`@Cacheable`,在清除缓存的方法上添加`@CacheEvict`。 5. **测试验证**:编写测试用例,确保 BoneCP 能够正常提供数据库...
总的来说,这个"AOP Cache源代码"项目演示了如何利用Spring AOP和Ehcache构建一个灵活且高效的缓存系统。通过拦截器,我们可以将缓存逻辑与业务逻辑分离,保持代码的整洁和可维护性。同时,Ehcache提供了强大的缓存...
MethodCacheInterceptor是基于AOP(面向切面编程)的一种缓存拦截器,它允许我们在方法调用前后插入特定的逻辑,例如在方法执行前检查缓存,如果存在结果则直接返回,否则执行方法并存储结果到缓存中。这种方式可以...
通过Spring的AOP(面向切面编程)支持,可以在方法调用级别轻松地添加缓存注解。在`ehcache.xml`配置文件中,`<diskStore>`元素设置磁盘存储路径,然后定义`<cache>`元素来配置特定的缓存实例,比如缓存的大小、过期...
Spring 框架则是一个广泛应用的Java企业级开发框架,提供了包括依赖注入、事务管理、AOP(面向切面编程)在内的多种功能。将 Ehcache 整合到 Spring 中,可以方便地在Spring应用中使用缓存服务。 在"ehcache+spring...
Ehcache 是一个流行的 Java 开源缓存框架,配置简单、结构清晰、功能强大。通过注解 @Cacheable 可以快速添加方法结果到缓存。通过 @CacheEvict 可以快速清除掉指定的缓存。但是,@CacheEvict 注解使用的是 key-...
- 面向切面编程(AOP)是Spring的一个核心特性,允许开发者在不修改业务代码的情况下,添加额外的功能,如日志、事务管理和缓存。 - 使用`@Cacheable`注解,可以在方法执行前检查是否有缓存的结果,如果有则直接...
在Web应用中,它可以与Spring的AOP(面向切面编程)结合,实现方法级别的缓存管理。 4. **源码分析**: - 对于开发者而言,源码提供了深入理解ehCache工作原理的机会,包括缓存策略、内存分配、数据序列化等方面的...
结合EhCache,我们可以创建一个缓存切面,将结果缓存起来,避免重复计算: ```java @Aspect @Component public class CacheAspect { @Autowired private CacheManager cacheManager; @Around("execution(* ...
通过Spring AOP(面向切面编程)和Ehcache的结合使用,可以在Spring管理的应用中轻松实现数据缓存,提升应用性能。 首先,Ehcache是一个广泛使用的Java本地缓存框架,它能够缓存各种数据类型,如集合、对象等。使用...
当被代理的目标类没有实现接口时,Spring AOP会利用CGLIB动态生成一个子类来实现对目标类的代理。CGLIB通过字节码技术在运行时生成新的类,这样可以在不修改原有代码的情况下,增加新的功能或进行监控。`cglib-2.2....
Spring是一个全面的企业级应用开发框架,它提供了一个容器来管理对象的生命周期和依赖关系,以及AOP(面向切面编程)功能。在本项目中,Spring作为核心框架,负责管理服务层(Service Layer)和数据访问层(DAO ...
在本实战项目"AOP-cache"中,我们将深入探讨如何利用面向切面编程(AOP)和Ehcache技术来实现高效的数据缓存处理。面向切面编程是一种编程范式,它允许开发者将关注点分离,比如日志、事务管理、性能监控等,从主...