转载:Spring+EhCache缓存实例

转载来自:http://www.cnblogs.com/mxmbk/articles/5162813.html

一、ehcahe的介绍

EhCache 是一个纯Java的进程内缓存框架,具有快速、精干等特点,是Hibernate中默认的CacheProvider。Ehcache是一种广泛使用的开 源Java分布式缓存。主要面向通用缓存,Java EE和轻量级容器。它具有内存和磁盘存储,缓存加载器,缓存扩展,缓存异常处理程序,一个gzip缓存servlet过滤器,支持REST和SOAP api等特点。

优点:
1. 快速
2. 简单
3. 多种缓存策略
4. 缓存数据有两级:内存和磁盘,因此无需担心容量问题
5. 缓存数据会在虚拟机重启的过程中写入磁盘
6. 可以通过RMI、可插入API等方式进行分布式缓存
7. 具有缓存和缓存管理器的侦听接口
8. 支持多缓存管理器实例,以及一个实例的多个缓存区域
9. 提供Hibernate的缓存实现

缺点:
1. 使用磁盘Cache的时候非常占用磁盘空间:这是因为DiskCache的算法简单,该算法简单也导致Cache的效率非常高。它只是对元素直接追加存储。因此搜索元素的时候非常的快。如果使用DiskCache的,在很频繁的应用中,很快磁盘会满。
2. 不能保证数据的安全:当突然kill掉java的时候,可能会产生冲突,EhCache的解决方法是如果文件冲突了,则重建cache。这对于Cache 数据需要保存的时候可能不利。当然,Cache只是简单的加速,而不能保证数据的安全。如果想保证数据的存储安全,可以使用Bekeley DB Java Edition版本。这是个嵌入式数据库。可以确保存储安全和空间的利用率。

EhCache的分布式缓存有传统的RMI,1.5版的JGroups,1.6版的JMS。分布式缓存主要解决集群环境中不同的服务器间的数据的同步问题。

使用Spring的AOP进行整合,可以灵活的对方法的返回结果对象进行缓存。

下面将介绍Spring+EhCache详细实例。

二、详细实例讲解

本实例的环境 eclipse + maven + spring + ehcache + junit

2.1、相关依赖pom.xml

 1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 2   <modelVersion>4.0.0modelVersion>
 3   <groupId>com.luogroupId>
 4   <artifactId>ehcache_projectartifactId>
 5   <version>0.0.1-SNAPSHOTversion>
 6   <properties>
 7
 8         <spring.version>3.2.8.RELEASEspring.version>
 9
10         <junit.version>4.10junit.version>
11   properties>
12
13   <dependencies>
14
15         <dependency>
16             <groupId>org.springframeworkgroupId>
17             <artifactId>spring-coreartifactId>
18             <version>${spring.version}version>
19         dependency>
20         <dependency>
21             <groupId>org.springframeworkgroupId>
22             <artifactId>spring-webmvcartifactId>
23             <version>${spring.version}version>
24         dependency>
25         <dependency>
26             <groupId>org.springframeworkgroupId>
27             <artifactId>spring-contextartifactId>
28             <version>${spring.version}version>
29         dependency>
30         <dependency>
31             <groupId>org.springframeworkgroupId>
32             <artifactId>spring-context-supportartifactId>
33             <version>${spring.version}version>
34         dependency>
35         <dependency>
36             <groupId>org.springframeworkgroupId>
37             <artifactId>spring-aopartifactId>
38             <version>${spring.version}version>
39         dependency>
40         <dependency>
41             <groupId>org.springframeworkgroupId>
42             <artifactId>spring-aspectsartifactId>
43             <version>${spring.version}version>
44         dependency>
45         <dependency>
46             <groupId>org.springframeworkgroupId>
47             <artifactId>spring-txartifactId>
48             <version>${spring.version}version>
49         dependency>
50         <dependency>
51             <groupId>org.springframeworkgroupId>
52             <artifactId>spring-jdbcartifactId>
53             <version>${spring.version}version>
54         dependency>
55         <dependency>
56             <groupId>org.springframeworkgroupId>
57             <artifactId>spring-webartifactId>
58             <version>${spring.version}version>
59         dependency>
60
61
62         <dependency>
63             <groupId>junitgroupId>
64             <artifactId>junitartifactId>
65             <version>${junit.version}version>
66             <scope>testscope>
67         dependency>
68
69
70         <dependency>
71             <groupId>org.springframeworkgroupId>
72             <artifactId>spring-testartifactId>
73             <version>${spring.version}version>
74             <scope>testscope>
75         dependency>
76
77
78         <dependency>
79             <groupId>net.sf.ehcachegroupId>
80             <artifactId>ehcacheartifactId>
81             <version>2.8.2version>
82         dependency>
83     dependencies>
84 project>

2.2、添加ehcache配置文件ehcache-setting.xml

 1 xml version="1.0" encoding="UTF-8"?>
 2 <ehcache>
 3
 4     <diskStore path="java.io.tmpdir"/>
 5
 6
 7     <defaultCache
 8             maxElementsInMemory="10000"
 9             eternal="false"
10             overflowToDisk="true"
11             timeToIdleSeconds="10"
12             timeToLiveSeconds="20"
13             diskPersistent="false"
14             diskExpiryThreadIntervalSeconds="120"/>
15
16     <cache name="cacheTest"
17         maxElementsInMemory="1000"
18         eternal="false"
19         overflowToDisk="true"
20         timeToIdleSeconds="10"
21         timeToLiveSeconds="20"/>
22
23 ehcache>

这里我们配置了cacheTest策略,10秒过期。

cache元素的属性:

name:缓存名称

maxElementsInMemory:内存中最大缓存对象数

maxElementsOnDisk:硬盘中最大缓存对象数,若是0表示无穷大

eternal:true表示对象永不过期,此时会忽略timeToIdleSeconds和timeToLiveSeconds属性,默认为false

overflowToDisk:true表示当内存缓存的对象数目达到了

maxElementsInMemory界限后,会把溢出的对象写到硬盘缓存中。注意:如果缓存的对象要写入到硬盘中的话,则该对象必须实现了Serializable接口才行。

diskSpoolBufferSizeMB:磁盘缓存区大小,默认为30MB。每个Cache都应该有自己的一个缓存区。

diskPersistent:是否缓存虚拟机重启期数据,是否持久化磁盘缓存,当这个属性的值为true时,系统在初始化时会在磁盘中查找文件名 为cache名称,后缀名为index的文件,这个文件中存放了已经持久化在磁盘中的cache的index,找到后会把cache加载到内存,要想把 cache真正持久化到磁盘,写程序时注意执行net.sf.ehcache.Cache.put(Element element)后要调用flush()方法。

diskExpiryThreadIntervalSeconds:磁盘失效线程运行时间间隔,默认为120秒

timeToIdleSeconds: 设定允许对象处于空闲状态的最长时间,以秒为单位。当对象自从最近一次被访问后,如果处于空闲状态的时间超过了timeToIdleSeconds属性 值,这个对象就会过期,EHCache将把它从缓存中清空。只有当eternal属性为false,该属性才有效。如果该属性值为0,则表示对象可以无限 期地处于空闲状态

timeToLiveSeconds:设定对象允许存在于缓存中的最长时间,以秒为单位。当对象自从被存放到缓存中后,如果处于缓存中的时间超过了 timeToLiveSeconds属性值,这个对象就会过期,EHCache将把它从缓存中清除。只有当eternal属性为false,该属性才有 效。如果该属性值为0,则表示对象可以无限期地存在于缓存中。timeToLiveSeconds必须大于timeToIdleSeconds属性,才有 意义

memoryStoreEvictionPolicy:当达到maxElementsInMemory限制时,Ehcache将会根据指定的策略去清理内存。可选策略有:LRU(最近最少使用,默认策略)、FIFO(先进先出)、LFU(最少访问次数)。

2.3、spring配置文件application.xml

 1 xml version="1.0" encoding="UTF-8"?>
 2 <beans xmlns="http://www.springframework.org/schema/beans"
 3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 4     xmlns:cache="http://www.springframework.org/schema/cache"
 5     xmlns:context="http://www.springframework.org/schema/context"
 6     xmlns:aop="http://www.springframework.org/schema/aop"
 7     xsi:schemaLocation="
 8            http://www.springframework.org/schema/beans
 9            http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
10            http://www.springframework.org/schema/aop
11            http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
12            http://www.springframework.org/schema/context
13            http://www.springframework.org/schema/context/spring-context-3.0.xsd
14            http://www.springframework.org/schema/cache
15            http://www.springframework.org/schema/cache/spring-cache-3.1.xsd">
16
17
18     <context:component-scan base-package="com.luo.service" />
19
20     <cache:annotation-driven cache-manager="cacheManager" />
21
22     <bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager">
23         <property name="cacheManager" ref="ehcache">property>
24     bean>
25
26     <bean id="ehcache" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">
27         <property name="configLocation" value="classpath:ehcache-setting.xml">property>
28     bean>
29
30 beans>

2.4、EhCacheTestService接口

1 package com.luo.service;
2
3 public interface EhCacheTestService {
4     public String getTimestamp(String param);
5 }

2.5、EhCacheTestService接口实现

1 package com.luo.service.impl;
 2
 3 import org.springframework.cache.annotation.Cacheable;
 4 import org.springframework.stereotype.Service;
 5 import com.luo.service.EhCacheTestService;
 6
 7 @Service
 8 public class EhCacheTestServiceImpl implements EhCacheTestService {
 9
10     @Cacheable(value="cacheTest",key="#param")
11     public String getTimestamp(String param) {
12         Long timestamp = System.currentTimeMillis();
13         return timestamp.toString();
14     }
15
16 }

这里注解中value=”cacheTest”与ehcache-setting.xml中的cache名称属性值一致。

2.6、单元测试类

1 package com.luo.baseTest;
 2
 3 import org.junit.runner.RunWith;
 4 import org.springframework.test.context.ContextConfiguration;
 5 import org.springframework.test.context.junit4.AbstractJUnit4SpringContextTests;
 6 import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
 7
 8 //指定bean注入的配置文件
 9 @ContextConfiguration(locations = { "classpath:application.xml" })
10 //使用标准的JUnit @RunWith注释来告诉JUnit使用Spring TestRunner
11 @RunWith(SpringJUnit4ClassRunner.class)
12 public class SpringTestCase extends AbstractJUnit4SpringContextTests {
13
14 }
15 package com.luo.service;
16
17 import org.junit.Test;
18 import org.springframework.beans.factory.annotation.Autowired;
19
20 import com.luo.baseTest.SpringTestCase;
21
22 public class EhCacheTestServiceTest extends SpringTestCase {
23
24     @Autowired
25     private EhCacheTestService ehCacheTestService;
26
27     @Test
28     public void getTimestampTest() throws InterruptedException{
29         System.out.println("第一次调用:" + ehCacheTestService.getTimestamp("param"));
30         Thread.sleep(2000);
31         System.out.println("2秒之后调用:" + ehCacheTestService.getTimestamp("param"));
32         Thread.sleep(11000);
33         System.out.println("再过11秒之后调用:" + ehCacheTestService.getTimestamp("param"));
34     }
35 }

转载:Spring+EhCache缓存实例

三、工程源码下载

http://download.csdn.net/detail/u013142781/9401689

Original: https://www.cnblogs.com/jenson138/p/6116472.html
Author: jenson138
Title: 转载:Spring+EhCache缓存实例

原创文章受到原创版权保护。转载请注明出处:https://www.johngo689.com/542207/

转载文章受原作者版权保护。转载请注明原作者出处!

(0)

大家都在看

  • spring boot RocketMQ 集成

    RocketMQ学习 1.基本概念 RocketMQ是阿里巴巴团队使用java语言开发的一款分布式消息中间件,是一款低延迟,高可用,拥有海量消息堆积能力和灵活拓展性的消息队列。 r…

    Java 2023年6月5日
    072
  • spring框架技术方面

    一:描述spring事务的只读,超时,回滚的原则。1.spring事务的只读:“只读事务”并不是一个强制选项,它只是一个暗示,提示数据库驱动程序和数据库系统…

    Java 2023年6月5日
    065
  • Linux中配置snappy压缩

    Linux中配置Snappy 首先查看本地库当前状态 1.查看命令:hadoop checknative 2.此时可以看到当前状态都是false,把这写问价你上传到/$HADOOP…

    Java 2023年6月9日
    069
  • 十一、枚举 Enumeration(完结)

    十一、枚举 Enumeration 11.1 枚举的引入 需求:用类表示季节 传统方法:声明 Season 类,有 name,temperature 两个属性,构造器,get,se…

    Java 2023年6月5日
    058
  • 2.7w字!Java基础面试题/知识点总结!(2021 最新版)

    这篇《Java 基础知识总结》是 JavaGuide 上阅读量最高的一篇文章,由于我对其进行了重构完善并且修复了很多小问题,所以,在博客园再同步一下! 文章内容比较多,目录如下: …

    Java 2023年6月9日
    062
  • Java(8)数组

    数组 数组存储相同类型值的序列。 声明数组 数组是一种数据结构,用来存储同一类型值的集合。通过一个整型下标(index,或称索引)可以访问数组中的每一个值。例如,如果a是一个整型数…

    Java 2023年6月9日
    063
  • Spring IOCAOPBean

    Spring是一个轻量级的控制反转IOC和面向切面编程AOP的框架 Spring 自带 IoC(Inverse of Control:控制反转) 和 AOP(Aspect-Orie…

    Java 2023年6月5日
    078
  • 手把手教你使用 Spring Boot 3 开发上线一个前后端分离的生产级系统(五)-MyBatis-Plus & 代码生成器集成与配置

    Mybatis 增强工具 MyBatis-Plus 集成 [MyBatis-Plus] (https://baomidou.com)是一个 MyBatis (https://www…

    Java 2023年6月8日
    066
  • Java使用Cipher类实现加密,包括DES,DES3,AES和RSA加密

    Original: https://www.cnblogs.com/libin6505/p/16446784.htmlAuthor: 戈博折刀Title: Java使用Cipher…

    Java 2023年5月29日
    068
  • Logback 快速入门 / 使用详解

    一、简介 Java 开源日志框架,以继承改善 log4j 为目的而生,是 log4j 创始人 Ceki Gülcü 的开源产品。它声称有极佳的性能,占用空间更小,且提供其他日志系统…

    Java 2023年6月6日
    074
  • 在VS2013下配置BOOST库

    1、安装Boost库 (1)、首先打开Boost的官网(http://www.boost.org/),找到下载位置,如下图中红框所示,此时最新的版本是1.64.0: (2)、点击进…

    Java 2023年6月5日
    070
  • Nginx

    一、简介 Nginx是一款轻量级的Web 服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器,并在一个BSD-like 协议下发行。由俄罗斯的程序设计师Igor Sy…

    Java 2023年5月30日
    046
  • Spring Ioc源码分析系列–Ioc源码入口分析

    Spring Ioc源码分析系列–Ioc源码入口分析 本系列文章代码基于Spring Framework 5.2.x 前言 上一篇文章Spring Ioc源码分析系列&…

    Java 2023年6月8日
    054
  • MyBatis与MyBatis-plus的区别

    一、MyBatis MyBatis前身是iBatis,是Clinton Begin在2001年发起的一个开源项目。最初侧重于码软件开发,后续发展成为一款基于java的持久层框架。M…

    Java 2023年5月30日
    068
  • Java学习-第一部分-第二阶段-第一节:面向对象编程(高级)

    面向对象编程(高级) 笔记目录:(https://www.cnblogs.com/wenjie2000/p/16378441.html) 类变量和类方法(static) 类变量 类…

    Java 2023年6月16日
    067
  • centos中NAT模式下静态IP连接外网

    使用linux虚拟机时,通常会用到yum命令来安装软件,然而这个命令需要连外网下载软件,用maven下载jar包也需要外网。虚拟机在内网可以互相ping通,然而ping不了外网,于…

    Java 2023年6月16日
    069
亲爱的 Coder【最近整理,可免费获取】👉 最新必读书单  | 👏 面试题下载  | 🌎 免费的AI知识星球