- 浏览: 20864 次
- 性别:
- 来自: 上海
-
Spring 整合EhCache
ehcache.xml
<?xml version="1.0" encoding="UTF-8"?>
<ehcache>
<!--timeToIdleSeconds 当缓存闲置n秒后销毁 -->
<!--timeToLiveSeconds 当缓存存活n秒后销毁 -->
<!-- 缓存配置
name:缓存名称。
maxElementsInMemory:缓存最大个数。
eternal:对象是否永久有效,一但设置了,timeout将不起作用。
timeToIdleSeconds:设置对象在失效前的允许闲置时间(单位:秒)。仅当eternal=false对象不是永久有效时使用,可选属性,默认值是0,也就是可闲置时间无穷大。
timeToLiveSeconds:设置对象在失效前允许存活时间(单位:秒)。最大时间介于创建时间和失效时间之间。仅当eternal=false对象不是永久有效时使用,默认是0.,也就是对象存活时间无穷大。
overflowToDisk:当内存中对象数量达到maxElementsInMemory时,Ehcache将会对象写到磁盘中。
diskSpoolBufferSizeMB:这个参数设置DiskStore(磁盘缓存)的缓存区大小。默认是30MB。每个Cache都应该有自己的一个缓冲区。
maxElementsOnDisk:硬盘最大缓存个数。
diskPersistent:是否缓存虚拟机重启期数据 Whether the disk store persists between restarts of the Virtual Machine. The default value is false.
diskExpiryThreadIntervalSeconds:磁盘失效线程运行时间间隔,默认是120秒。
memoryStoreEvictionPolicy:当达到maxElementsInMemory限制时,Ehcache将会根据指定的策略去清理内存。默认策略是LRU(最近最少使用)。你可以设置为FIFO(先进先出)或是LFU(较少使用)。
clearOnFlush:内存数量最大时是否清除。
-->
<diskStore path="D:/tmpdir"/>
<defaultCache
maxElementsInMemory="500"
eternal="false"
timeToIdleSeconds="300"
timeToLiveSeconds="1200"
overflowToDisk="true"/>
<cache name="young" maxElementsInMemory="150" eternal="false" timeToLiveSeconds="36000" timeToIdleSeconds="3600" overflowToDisk="true"/>
</ehcache>
配置文件中进行了基本的配置,建立了一个叫“young”的cache。
然后在非整合spring的时候,测试一下cache是否使用成功:
NormalTest.java
public class NormalTest {
public static void main(String[] args) {
CacheManager manager = CacheManager.create();// 默认配置文件创建
String[] names = manager.getCacheNames();
for (int i = 0; i < names.length; i++) {
System.out.println(names[i]);
}
//Cache cache = manager.getCache(names[0]);
Cache cache = new Cache("test", 150, true, false, 5, 2);
manager.addCache(cache);
cache.put(new Element("key1","value1"));
Element element = cache.get("key1");
System.out.println(element.getValue());
String[] names1 = manager.getCacheNames();
for (int i = 0; i < names1.length; i++) {
System.out.println(names1[i]);
}
}
}
运行一下,有输出存进去的值就OK啦。
下面开始整合Spring,建立Spring配置文件:
applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:util="http://www.springframework.org/schema/util"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:cache="http://www.springframework.org/schema/cache"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/util
http://www.springframework.org/schema/util/spring-util-3.0.xsd
http://www.springframework.org/schema/cache
http://www.springframework.org/schema/cache/spring-cache.xsd">
<!-- 隐式地向 Spring 容器注册
AutowiredAnnotationBeanPostProcessor、
CommonAnnotationBeanPostProcessor、
PersistenceAnnotationBeanPostProcessor 以及
equiredAnnotationBeanPostProcessor 这 4 个 BeanPostProcessor。
在配置文件中使用 context 命名空间之前,
必须在 <beans> 元素中声明 context 命名空间。 -->
<context:annotation-config/>
<!-- <context:component-scan/> 配置项不但启用了对类包进行扫描
以实施注释驱动 Bean 定义的功能,
同时还启用了注释驱动自动注入的功能
(即还隐式地在内部注册了 AutowiredAnnotationBeanPostProcessor
和 CommonAnnotationBeanPostProcessor) -->
<context:component-scan base-package="young" />
<!-- 缓存注解驱动 -->
<cache:annotation-driven />
<!--
<cache:annotation-driven cache-manager="cacheManager" proxy-target-class="false" mode="proxy"/>-->
<!-- cacheManager工厂类 -->
<bean id="cacheManagerFactory" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"
p:configLocation="classpath:ehcache.xml"
p:shared="false" />
<!-- 声明cacheManager -->
<bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager"
p:cacheManager-ref="cacheManagerFactory"/>
</beans>
建立一个有缓存使用的类:CacheMethod.java
package young;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.stereotype.Component;
@Component
public class CacheMethod {
@Cacheable("young")
public String getYoung(String str) {
System.out.println("method is running...");
return "1230-1230-1230-0123-0123";
}
}
类中只有一个方法,返回固定值,并且会被缓存。最后用Junit4对这个类进行测试:SpringCacheTest.java
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:applicationContext.xml" })
public class SpringCacheTest {
@Resource
CacheManager manager;
@Resource
CacheMethod method;
@Test
public void testGetYoung() {
// CacheMethod method = new CacheMethod();这样得到的实例不在Spring的管理之中,也无法Cache
String s = method.getYoung("str");
System.out.println(s);
String s1 = method.getYoung("str");
System.out.println(s1);
String[] names = manager.getCacheNames();
for (int i = 0; i < names.length; i++) {// 输出所有缓存
System.out.println(names[i]);
}
Cache young = manager.getCache("young");// 得到cache
System.out.println("Cache named 'young':" + young);
assertEquals("str", young.getKeys().get(0));
assertEquals(s, young.get("str").getValue());
}
}
ehcache.xml
<?xml version="1.0" encoding="UTF-8"?>
<ehcache>
<!--timeToIdleSeconds 当缓存闲置n秒后销毁 -->
<!--timeToLiveSeconds 当缓存存活n秒后销毁 -->
<!-- 缓存配置
name:缓存名称。
maxElementsInMemory:缓存最大个数。
eternal:对象是否永久有效,一但设置了,timeout将不起作用。
timeToIdleSeconds:设置对象在失效前的允许闲置时间(单位:秒)。仅当eternal=false对象不是永久有效时使用,可选属性,默认值是0,也就是可闲置时间无穷大。
timeToLiveSeconds:设置对象在失效前允许存活时间(单位:秒)。最大时间介于创建时间和失效时间之间。仅当eternal=false对象不是永久有效时使用,默认是0.,也就是对象存活时间无穷大。
overflowToDisk:当内存中对象数量达到maxElementsInMemory时,Ehcache将会对象写到磁盘中。
diskSpoolBufferSizeMB:这个参数设置DiskStore(磁盘缓存)的缓存区大小。默认是30MB。每个Cache都应该有自己的一个缓冲区。
maxElementsOnDisk:硬盘最大缓存个数。
diskPersistent:是否缓存虚拟机重启期数据 Whether the disk store persists between restarts of the Virtual Machine. The default value is false.
diskExpiryThreadIntervalSeconds:磁盘失效线程运行时间间隔,默认是120秒。
memoryStoreEvictionPolicy:当达到maxElementsInMemory限制时,Ehcache将会根据指定的策略去清理内存。默认策略是LRU(最近最少使用)。你可以设置为FIFO(先进先出)或是LFU(较少使用)。
clearOnFlush:内存数量最大时是否清除。
-->
<diskStore path="D:/tmpdir"/>
<defaultCache
maxElementsInMemory="500"
eternal="false"
timeToIdleSeconds="300"
timeToLiveSeconds="1200"
overflowToDisk="true"/>
<cache name="young" maxElementsInMemory="150" eternal="false" timeToLiveSeconds="36000" timeToIdleSeconds="3600" overflowToDisk="true"/>
</ehcache>
配置文件中进行了基本的配置,建立了一个叫“young”的cache。
然后在非整合spring的时候,测试一下cache是否使用成功:
NormalTest.java
public class NormalTest {
public static void main(String[] args) {
CacheManager manager = CacheManager.create();// 默认配置文件创建
String[] names = manager.getCacheNames();
for (int i = 0; i < names.length; i++) {
System.out.println(names[i]);
}
//Cache cache = manager.getCache(names[0]);
Cache cache = new Cache("test", 150, true, false, 5, 2);
manager.addCache(cache);
cache.put(new Element("key1","value1"));
Element element = cache.get("key1");
System.out.println(element.getValue());
String[] names1 = manager.getCacheNames();
for (int i = 0; i < names1.length; i++) {
System.out.println(names1[i]);
}
}
}
运行一下,有输出存进去的值就OK啦。
下面开始整合Spring,建立Spring配置文件:
applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:util="http://www.springframework.org/schema/util"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:cache="http://www.springframework.org/schema/cache"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/util
http://www.springframework.org/schema/util/spring-util-3.0.xsd
http://www.springframework.org/schema/cache
http://www.springframework.org/schema/cache/spring-cache.xsd">
<!-- 隐式地向 Spring 容器注册
AutowiredAnnotationBeanPostProcessor、
CommonAnnotationBeanPostProcessor、
PersistenceAnnotationBeanPostProcessor 以及
equiredAnnotationBeanPostProcessor 这 4 个 BeanPostProcessor。
在配置文件中使用 context 命名空间之前,
必须在 <beans> 元素中声明 context 命名空间。 -->
<context:annotation-config/>
<!-- <context:component-scan/> 配置项不但启用了对类包进行扫描
以实施注释驱动 Bean 定义的功能,
同时还启用了注释驱动自动注入的功能
(即还隐式地在内部注册了 AutowiredAnnotationBeanPostProcessor
和 CommonAnnotationBeanPostProcessor) -->
<context:component-scan base-package="young" />
<!-- 缓存注解驱动 -->
<cache:annotation-driven />
<!--
<cache:annotation-driven cache-manager="cacheManager" proxy-target-class="false" mode="proxy"/>-->
<!-- cacheManager工厂类 -->
<bean id="cacheManagerFactory" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"
p:configLocation="classpath:ehcache.xml"
p:shared="false" />
<!-- 声明cacheManager -->
<bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager"
p:cacheManager-ref="cacheManagerFactory"/>
</beans>
建立一个有缓存使用的类:CacheMethod.java
package young;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.stereotype.Component;
@Component
public class CacheMethod {
@Cacheable("young")
public String getYoung(String str) {
System.out.println("method is running...");
return "1230-1230-1230-0123-0123";
}
}
类中只有一个方法,返回固定值,并且会被缓存。最后用Junit4对这个类进行测试:SpringCacheTest.java
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:applicationContext.xml" })
public class SpringCacheTest {
@Resource
CacheManager manager;
@Resource
CacheMethod method;
@Test
public void testGetYoung() {
// CacheMethod method = new CacheMethod();这样得到的实例不在Spring的管理之中,也无法Cache
String s = method.getYoung("str");
System.out.println(s);
String s1 = method.getYoung("str");
System.out.println(s1);
String[] names = manager.getCacheNames();
for (int i = 0; i < names.length; i++) {// 输出所有缓存
System.out.println(names[i]);
}
Cache young = manager.getCache("young");// 得到cache
System.out.println("Cache named 'young':" + young);
assertEquals("str", young.getKeys().get(0));
assertEquals(s, young.get("str").getValue());
}
}
发表评论
-
java 读取文件编码问题
2014-07-22 09:51 385在项目中遇到要读取文本文件内容然后批量查询,但每当在后台读取 ... -
Java POI导出Excel
2014-07-21 09:43 469Controller层代码如下 [jav ... -
java 发送http请求
2014-06-20 17:34 618java 发送http请求(get 与 post方法请求)。 ... -
基站定位
2014-06-16 13:50 1576在一些项目中,可能会使用到不同的定位,如gps、基站、Wi ... -
java --枚举
2014-06-16 13:31 528DK1.5引入了新的类型——枚举。在 Java 中它虽然算个 ... -
redis客户端与spring整合
2014-05-20 18:00 692redis配置文件 ##redis#IP\u5730\u5 ... -
double 保留指定的小数位
2014-05-20 15:37 632//val 原始double值,unit要保留的小数位 ... -
无线定位系统的基站选择算法
2014-05-18 08:47 3657近几年来,移动通信phone定位业务引起了人们的普遍关注,并 ... -
基站定位算法
2014-05-18 08:40 3441定位技术有 两种,一 ... -
linux下配置redis server
2014-05-16 15:05 6191、下载源码,解压缩后编译源码。 $ wget http:/ ... -
readis windows servrer 搭建与Java客户端的连接
2014-05-16 14:11 5811:首先下载redis:redis-2.0.2.zip (32 ... -
坐标纠偏的实现
2014-05-14 10:15 2517因我们项目中使用了gps 、baiduMap 和 go ... -
MIAN2 Server端与spring的整合
2014-05-14 10:09 747项目中遇到要将包含mina2服务端的项目转成web项目,min ... -
java项目转web项目
2014-05-13 22:45 694将项目文件.project文件的<natures> ... -
MIAN2客户端与spring的整合
2014-05-12 15:47 740项目中遇到要在Java web项目中使用mina2客户端,并且 ...
相关推荐
Spring整合Ehcache是将Ehcache作为Spring应用的缓存解决方案,以提高应用程序的性能和效率。Ehcache是一个广泛使用的开源Java分布式缓存,它支持内存和磁盘存储,具有缓存热备、缓存复制等功能。下面将详细介绍...
Spring 整合 EhCache 是一个常见的缓存管理方案,它允许我们在Spring应用中高效地缓存数据,提高系统性能。EhCache 是一个开源、基于内存的Java缓存库,适用于快速、轻量级的数据存储。现在我们来详细探讨如何在...
Spring整合EhCache是将EhCache作为一个缓存解决方案与Spring框架进行集成,以提高应用程序的性能和效率。EhCache是一款开源、轻量级的Java缓存库,广泛用于缓存中间件,以减少数据库访问,提升系统响应速度。 在...
### Spring整合EhCache详细教程 #### Spring缓存抽象与核心思想 在开始Spring整合EhCache之前,首先需要理解Spring缓存的核心概念及其抽象机制。Spring框架本身并不提供具体的缓存实现,但它提供了一套统一的缓存...
Spring整合EhCache是一个常见的缓存管理方案,尤其在企业级Java应用中广泛使用。Spring框架提供了对多种缓存技术的支持,包括EhCache,这使得我们能够在Spring应用中轻松地实现数据缓存,提高系统性能。下面我们将...
### Spring 整合 EhCache 实现原理与应用详解 #### 一、Spring 对 Cache 的支持 从 Spring 3.1 版本开始,Spring 框架正式引入了对 Cache 的支持,这种支持的方式和原理与 Spring 对事务管理的支持非常类似。通过...
本例子主要讲解ehcache的配置使用。采用了java配置和xml配置两种方式。主要用于学习。 使用java配置时将SpringTestCase.java 文件中的@ContextConfiguration(locations = { "classpath:applicationContext.xml" }) ...
spring3整合EhCache注解实例
本例子主要讲解ehcache的配置使用。采用了java配置和xml配置两种方式。主要用于学习。 使用java配置时将SpringTestCase.java 文件中的@ContextConfiguration(locations = { "classpath:applicationContext.xml" }) ...
spring集成ehcache所需的jar包
配置ehcache缓存,存储内存的设置,与spring 的整合等
总的来说,通过Spring4的Java配置方式整合EhCache,我们可以实现零配置的页面缓存,极大地提高了Web应用的响应速度和用户体验。在实际开发中,根据项目需求,可以进一步细化缓存策略,如使用更复杂的缓存键生成逻辑...
在这个"spring+ehcache示例整合Demo"中,我们将会探讨如何将Ehcache集成到Spring框架中,以实现高效的缓存管理。 首先,我们需要在项目的`pom.xml`文件中引入Ehcache和Spring的依赖。Ehcache通常使用的是`org....
# Spring 整合 Ehcache 管理缓存详解 Ehcache 是一个高性能、轻量级的缓存框架,适用于 Java 应用程序。它可以极大地提高数据访问速度,减轻数据库负载。Spring 框架则提供了对缓存功能的抽象,允许开发者选择不同...
在本文中,我们将深入探讨如何将Spring 2.5与Ehcache 2.0进行集成,以便在我们的应用程序中实现高效、可扩展的缓存管理。Ehcache是一款广泛使用的开源Java缓存解决方案,而Spring框架则为它提供了一个方便的集成层,...
2. **Spring整合Ehcache**: - 使用Spring的`@EnableCaching`注解开启缓存支持,这会在Spring上下文中创建所需的缓存基础设施。 - 对于需要缓存的方法,可以使用`@Cacheable`、`@CacheEvict`、`@CachePut`等注解来...
当我们谈论“Spring + Ehcache + Redis”两级缓存时,我们实际上是在讨论如何在Java环境中利用Spring框架来集成Ehcache作为本地缓存,并利用Redis作为分布式二级缓存,构建一个高效且可扩展的缓存解决方案。...
Spring Boot 2.x版本可以与Ehcache 3.x版本成功整合,下面详细介绍相关的知识点。 首先,整合Spring Boot与Ehcache 3.x涉及到依赖配置。在Maven项目中,需要添加以下依赖到`pom.xml`文件中: ```xml ...
在【压缩包子文件的文件名称列表】"Springcache"中,可能包含了Spring整合Ehcache的示例代码或者配置文件,可以帮助读者更好地理解上述知识点。这些文件可能包括Spring的配置文件(如`applicationContext.xml`或Java...
1.通过google ehcache-spring-annotatios.jar自动注解方式实现整合Spring+Ehcache。 2.Action里通过struts2-spring-plugin.jar插件自动根据名字注入。 3.Ajax无刷新异步调用Struts2,返回Json数据,以用户注册为例。...