博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【EhCache】Java缓存框架使用EhCache结合Spring AOP
阅读量:5974 次
发布时间:2019-06-19

本文共 6712 字,大约阅读时间需要 22 分钟。

  hot3.png

一.Ehcache简介

    EhCache是一个纯Java的进程内缓存框架,具有如下特点:
    1. 快速简单,非常容易和应用集成。
    2.支持多种缓存策略 。
    3. 缓存数据有两级:内存和磁盘,因此无需担心容量问题 。
    4. 缓存数据会在虚拟机重启的过程中写入磁盘 。
    5. 可以通过RMI、可插入API等方式进行分布式缓存。
    6. 具有缓存和缓存管理器的侦听接口 。
    7. 支持多缓存管理器实例,以及一个实例的多个缓存区域 等特点。
二.Ehcache配置的相关参数
    Ehcache的配置很灵活,官方提供的配置方式有好几种,你可以通过声明配置、在xml中配置、在程序里配置或者调用构造方法时传入不同的参数。下面以最常用的XML配置为例说下配置的相关参数的意义,ehcache.xml是最常见的一个文件,ehcache一般会通过CacheManager从classpath加载该文件完成Cache的实例化。
   
    1.ehcache.xml中的配置信息
        ehcache.xml片段:

Java代码
 

 

     2.Cache中常用参数的具体意义

        (1)name:Cache的唯一标识。
        (2)maxElementsInMemory:内存中最大缓存对象数。
        (3)eternal:Element是否永久有效,一旦设置true,timeout将不起作用。
        (4)timeToIdleSeconds:设置Element在失效前的允许闲置时间。仅当element不是永久有效时使用,可选属性,默认值是0,也就是可闲置时间无穷大。
        (5)timeToLiveSeconds:设置Element在失效前允许存活时间。最大时间介于创建时间和失效时间之间。仅当element不是永久有效时使用,默认是0.,也就是element存活时间无穷大。
        (6)overflowToDisk:配置此属性,当内存中Element数量达到maxElementsInMemory时,Ehcache将会Element写到磁盘中。
        (7)maxElementsOnDisk:磁盘中最大缓存对象数,若是0表示无穷大。
        (8) memoryStoreEvictionPolicy:当达到maxElementsInMemory限制时,Ehcache将会根据指定的策略去清理缓存中的内容。默认策略是LRU(最近最少使用),你也可以设置为FIFO(先进先出)或是LFU(较少使用)
   
三.Spring和Ehcache的集成
    1.ehcache.xml

 

    2.beans.xml的配置

classpath:ehcache.xml
configCache

 

    3.测试类

Java
package org.mango.cache.ehcache;               import net.sf.ehcache.Cache;        import net.sf.ehcache.CacheManager;        import net.sf.ehcache.Element;               import org.springframework.beans.factory.BeanFactory;        import org.springframework.beans.factory.xml.XmlBeanFactory;        import org.springframework.core.io.ClassPathResource;        import org.springframework.core.io.Resource;               public class EhcacheTest {                   public static void main(String[] args) {                Resource res = new ClassPathResource("beans.xml");                BeanFactory factory = new XmlBeanFactory(res);                       CacheManager cacheManager = (CacheManager) factory.getBean("cacheManager");                Cache levelOneCache = cacheManager.getCache("levelOneCache");                CacheObject cacheObject = null;                for (int i = 0; i < 10; i++) {                    Element element = levelOneCache.get("key");                           if (element == null) {                        cacheObject = new CacheObject("test");                        element = new Element("key", cacheObject);                        levelOneCache.put(element);                        System.out.println("cacheObject[" + cacheObject + "]" + ",无法从缓存中取到");                    } else {                        cacheObject = (CacheObject) element.getValue();                        System.out.println("cacheObject[" + cacheObject + "]" + ",从缓存中取到");                    }                }            }        }
 

        输出如下:

 
cacheObject[name:test],无法从缓存中取到        cacheObject[name:test],从缓存中取到        cacheObject[name:test],从缓存中取到        cacheObject[name:test],从缓存中取到        cacheObject[name:test],从缓存中取到

       

四.利用Spring AOP和Ehcache实现线程级方法缓存
    在复杂的业务逻辑或在一次计算中需多次调用同一个DAO或远程服务,在这种情况下,均可对计算结果缓存起来,不但可以减少了不必要的调用次数,还同时可以提高系统运算性能。下面以缓存一个service为例说明一下其用法。
   
    1.TestService接口

public interface TestService {                   /**             * 根据userId取得用户名。             *             * @param userId             *               */            public String getUserName(String userId);        }
 

   

    2.TestServiceImpl实现类

public class TestServiceImpl implements TestService {            /*             *   org.mango.cache.ehcache.TestService#getUserName(java.lang.String)             */            public String getUserName(String userId) {                return userId;            }        }

 

    3.拦截器的实现

public class CacheInterceptor implements MethodInterceptor {                   private Cache cache;                   /**             *   org.aopalliance.intercept.MethodInterceptor#invoke(org.aopalliance.intercept.MethodInvocation)             */            public Object invoke(MethodInvocation invocation) throws Throwable {                Method method = invocation.getMethod();                String methodName = method.getName();                Object[] arguments = invocation.getArguments();                Object result = invocation.proceed();                       String targetName = method.getDeclaringClass().getName();                String key = getCacheKey(targetName, methodName, arguments);                       Element element = cache.get(key);                       if (element == null) {                           result = invocation.proceed();                    System.out.println("第一次调用方法并缓存其值:" + result);                    cache.put(new Element(key, result));                } else {                    result = element.getValue();                    System.out.println("从缓存中取得的值为:" + result);                }                return result;                   }                   /**             * 生成缓存中的KEY值。             */            protected 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();            }                   public void setCache(Cache cache) {                this.cache = cache;            }               }
 

    4.Bean的配置

serviceMethodInterceptor
*Service

 

    5.测试方法

public class ServiceTest {           public static void main(String[] args) {                ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");                TestService testService = (TestService) context.getBean("testService");                for (int i = 0; i < 5; i++) {                    testService.getUserName("mango");                }            }        }

 

        其输出结果如下:

第一次调用方法并缓存其值:mango从缓存中取得的值为:mango从缓存中取得的值为:mango从缓存中取得的值为:mango从缓存中取得的值为:mango
 

转载于:https://my.oschina.net/iblike/blog/71260

你可能感兴趣的文章
7、MTC与MTV,http请求介绍
查看>>
logstash消费阿里云kafka消息
查看>>
unix 环境高级编程
查看>>
MAXIMO 快速查找实现
查看>>
Oracle——条件控制语句
查看>>
第一次作业-准备篇
查看>>
day-6 and day-7:面向对象
查看>>
CSU Double Shortest Paths 湖南省第十届省赛
查看>>
webgl像机世界
查看>>
php正则怎么使用(最全最细致)
查看>>
javascript数学运算符
查看>>
LC.155. Min Stack(非优化,两个stack 同步 + -)
查看>>
交互设计[3]--点石成金
查看>>
SCCM TP4部署Office2013
查看>>
redis主从配置<转>
查看>>
bootloader功能介绍/时钟初始化设置/串口工作原理/内存工作原理/NandFlash工作原理...
查看>>
利用console控制台调试php代码
查看>>
递归算法,如何把list中父子类对象递归成树
查看>>
讲解sed用法入门帖子
查看>>
Linux 内核已支持苹果
查看>>