问题:
在Web开发过程中,我们经常会需要对页面、对象、数据进行缓存,同时支持集群/分布式缓存。在javaEE中比较流行通过ehcache进行解决。学前参考:http://www.cnblogs.com/deepbreath/p/5456413.html
解决办法:
spring4.X+ehcache.X集群。代码如下:
pom.xml
<?xml version="1.0" encoding="UTF-8"?> <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"> <parent> <artifactId>testAll</artifactId> <groupId>com.yada.test</groupId> <version>1.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>ehCacheDemo</artifactId> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <spring.version>4.2.3.RELEASE</spring.version> </properties> <dependencies> <dependency> <groupId>org.ehcache</groupId> <artifactId>ehcache</artifactId> <version>3.1.1</version> </dependency> <!-- spring begin--> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aop</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-expression</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> <version>${spring.version}</version> </dependency> <!--spring end--> <!-- ehcache 相关jar包 **beging** --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.10</version> </dependency> <dependency> <groupId>com.googlecode.ehcache-spring-annotations</groupId> <artifactId>ehcache-spring-annotations</artifactId> <version>1.2.0</version> </dependency> <!--<dependency>--> <!--<groupId>net.sf.ehcache</groupId>--> <!--<artifactId>ehcache</artifactId>--> <!--<version>2.10.2</version>--> <!--<type>pom</type>--> <!--</dependency>--> </dependencies> </project>
ehcache.xml
<?xml version="1.0" encoding="UTF-8"?> <ehcache> <defaultCache maxElementsInMemory="10000" eternal="false" timeToIdleSeconds="120" timeToLiveSeconds="120" overflowToDisk="true" maxElementsOnDisk="10000000" diskPersistent="false" diskExpiryThreadIntervalSeconds="120" memoryStoreEvictionPolicy="LRU" /> <cache name="infoCache" maxElementsInMemory="1000" maxElementsOnDisk="1000" overflowToDisk="false" diskSpoolBufferSizeMB="20" timeToIdleSeconds="180" timeToLiveSeconds="180" memoryStoreEvictionPolicy="LRU"> <cacheEventListenerFactory class="net.sf.ehcache.distribution.RMICacheReplicatorFactory" properties="replicateAsynchronously=true, replicatePuts=true, replicateUpdates=true,replicateUpdatesViaCopy=false, replicateRemovals=true "/> </cache> <!-- rmi本地cache服务 --> <cacheManagerPeerListenerFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory" properties="hostName=localhost, port=40001, socketTimeoutMillis=2000"/> <!-- rmi远程cache服务 --> <cacheManagerPeerProviderFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerProviderFactory" properties="peerDiscovery=manual, rmiUrls= //22.7.16.98:40002/infoCache"/> </ehcache>
applicationContext-ehcache.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:cache="http://www.springframework.org/schema/cache" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache.xsd"> <cache:annotation-driven cache-manager="ehcacheManager"/> <bean id="infoCache" class="com.test.ehcache.InfoCache"> <constructor-arg name="cacheManager" ref="ehcacheManager"/> <constructor-arg name="cacheName" value="infoCache"/> </bean> <!-- cacheManager工厂类,指定ehcache.xml的位置 --> <bean id="cacheManagerFactory" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"> <property name="configLocation" value="classpath:/ehcache.xml"/> </bean> <!-- 声明cacheManager --> <bean id="ehcacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager"> <property name="cacheManager" ref="cacheManagerFactory"/> </bean> </beans>
InfoCache.java
package com.test.ehcache; import org.springframework.cache.Cache; import org.springframework.cache.ehcache.EhCacheCacheManager; /** * Created by ** on 2016/9/5. */ public class InfoCache { private EhCacheCacheManager cacheManager; private String cacheName; public InfoCache(EhCacheCacheManager cacheManager,String cacheName){ this.cacheManager =cacheManager ; this.cacheName = cacheName ; } public String put(String infoKey, String doc) { cacheManager.getCache(cacheName).put(infoKey, doc); return doc; } public String get(String smsKey) { Cache.ValueWrapper valueWrapper = cacheManager.getCache(cacheName).get(smsKey); if(valueWrapper==null){ // System.out.println(valueWrapper.get()); return "no result" ; } return valueWrapper.get().toString(); } public void remove(String smsKey) { cacheManager.getCache(cacheName).evict(smsKey); } }
App.java
package com.test.ehcache; import org.springframework.context.support.ClassPathXmlApplicationContext; /** * Created by ** on 2016/9/5. */ public class App { public static void main(String[] args) { try { Thread.sleep(5000); } catch (InterruptedException e) { e.printStackTrace(); } ClassPathXmlApplicationContext classPathXmlApplicationContext = new ClassPathXmlApplicationContext("applicationContext.xml"); System.out.println("start secceed!"); InfoCache infoCache =(InfoCache)classPathXmlApplicationContext.getBean("infoCache") ; int num = 0 ; while (true){ try { Thread.sleep(1000); num++; System.out.println("Who are 2b ? "+infoCache.get("2b")); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } } } }
节点二:App.java
import org.springframework.context.support.ClassPathXmlApplicationContext; /** * Created by ** on 2016/9/5. */ public class App { public static void main(String[] args) { ClassPathXmlApplicationContext classPathXmlApplicationContext = new ClassPathXmlApplicationContext("applicationContext.xml"); System.out.println("start secceed!"); InfoCache infoCache =(InfoCache)classPathXmlApplicationContext.getBean("infoCache") ; int num = 0 ; infoCache.put("2b","is bob !") ; while (true){ try { num++; infoCache.remove("2b"); infoCache.put("2b","is bob !") ; Thread.sleep(1000); } catch (Exception e) { e.printStackTrace(); } } } }
节点三:App.app
public class App { public static void main(String[] args) { ClassPathXmlApplicationContext classPathXmlApplicationContext = new ClassPathXmlApplicationContext("applicationContext.xml"); System.out.println("start secceed!"); InfoCache infoCache =(InfoCache)classPathXmlApplicationContext.getBean("infoCache") ; int num = 0 ; while (true){ try { Thread.sleep(1000); num++; System.out.println("Who are 2b ? "+infoCache.get("2b")); } catch (Exception e) { e.printStackTrace(); } } } }
结果输出:
Who are 2b ? no result
Who are 2b ? is bob !
Who are 2b ? is bob !
Who are 2b ? is bob !
Who are 2b ? is joy
Who are 2b ? is joy
Who are 2b ? is joy
Who are 2b ? is bob !
Who are 2b ? is bob !
Who are 2b ? is bob !
Who are 2b ? is joy
参数说明:
<diskStore>:当内存缓存中对象数量超过maxElementsInMemory时,将缓存对象写到磁盘缓存中(需对象实现序列化接口)。
<diskStore path="">:用来配置磁盘缓存使用的物理路径,Ehcache磁盘缓存使用的文件后缀名是*.data和*.index。
name:缓存名称,cache的唯一标识(ehcache会把这个cache放到HashMap里)。
maxElementsOnDisk:磁盘缓存中最多可以存放的元素数量,0表示无穷大。
maxElementsInMemory:内存缓存中最多可以存放的元素数量,若放入Cache中的元素超过这个数值,则有以下两种情况。
1)若overflowToDisk=true,则会将Cache中多出的元素放入磁盘文件中。
2)若overflowToDisk=false,则根据memoryStoreEvictionPolicy策略替换Cache中原有的元素。
Eternal:缓存中对象是否永久有效,即是否永驻内存,true时将忽略timeToIdleSeconds和timeToLiveSeconds。
timeToIdleSeconds:缓存数据在失效前的允许闲置时间(单位:秒),仅当eternal=false时使用,默认值是0表示可闲置时间无穷大,此为可选属性即访问这个cache中元素的最大间隔时间,若超过这个时间没有访问此Cache中的某个元素,那么此元素将被从Cache中清除。
timeToLiveSeconds:缓存数据在失效前的允许存活时间(单位:秒),仅当eternal=false时使用,默认值是0表示可存活时间无穷大,即Cache中的某元素从创建到清楚的生存时间,也就是说从创建开始计时,当超过这个时间时,此元素将从Cache中清除。
overflowToDisk:内存不足时,是否启用磁盘缓存(即内存中对象数量达到maxElementsInMemory时,Ehcache会将对象写到磁盘中),会根据标签中path值查找对应的属性值,写入磁盘的文件会放在path文件夹下,文件的名称是cache的名称,后缀名是data。
diskPersistent:是否持久化磁盘缓存,当这个属性的值为true时,系统在初始化时会在磁盘中查找文件名为cache名称,后缀名为index的文件,这个文件中存放了已经持久化在磁盘中的cache的index,找到后会把cache加载到内存,要想把cache真正持久化到磁盘,写程序时注意执行net.sf.ehcache.Cache.put(Element element)后要调用flush()方法。
diskExpiryThreadIntervalSeconds:磁盘缓存的清理线程运行间隔,默认是120秒。
diskSpoolBufferSizeMB:设置DiskStore(磁盘缓存)的缓存区大小,默认是30MB
memoryStoreEvictionPolicy:内存存储与释放策略,即达到maxElementsInMemory限制时,Ehcache会根据指定策略清理内存,共有三种策略,分别为LRU(最近最少使用)、LFU(最常用的)、FIFO(先进先出)。
相关推荐
在Spring Boot 2.x应用程序中,EhCache是一种常用的缓存解决方案,用于提高应用程序性能,减少对数据库的访问。然而,当我们的应用被部署在分布式环境中,即多个进程同时运行时,缓存的一致性问题变得至关重要。为了...
在实际生产环境中,还需要考虑更多因素,例如Redis的集群配置、安全设置、性能优化等,以确保系统的稳定性和高可用性。同时,对于大规模的缓存需求,可能还需要结合Spring Cache的其他特性,如自定义缓存Key生成器、...
- **缓存同步**:在分布式环境中,EhCache提供了复制和集群策略来保证多节点间的缓存一致性。 8. **缓存API**: 使用EhCache主要通过`CacheManager`获取`Cache`实例,然后通过`put()`、`get()`、`remove()`等方法...
可以通过调整`ehcache.xml`配置文件或者使用Spring的缓存抽象来实现。 ### 6. 分布式缓存 虽然EhCache支持分布式缓存,但实现起来相对复杂,通常需要借助RMI或其他网络通信方式。相比之下,Redis在分布式场景下的...
- **XML配置**: Ehcache 2.x版本主要通过XML文件进行配置,包括缓存区域定义、缓存策略等。 - **内存和磁盘存储**: 可以设置缓存在内存和磁盘上的大小,以及如何在两者之间迁移数据。 - **缓存策略**: 可配置缓存...
这些包包括但不限于 `mybatis-3.2.7.jar`、`mybatis-spring-1.x.jar`(如果使用 Spring 框架)、`mybatis-ehcache-1.x.jar` 等。如果使用 Maven,可以通过在 `pom.xml` 文件中添加依赖来实现自动下载。 2. **...
- chapter4-2-6:[Spring Boot 1.5.x新特性:动态修改日志级别](http://blog.didispace.com/spring-boot-1-5-x-feature-1/)] #### 安全管理 - chapter4-3-1:[使用Spring Security]...
4. Terracotta Server(Terracotta服务器):实现分布式缓存,通过Terracotta集群,多个Ehcache实例可以共享数据。 三、配置与使用 Ehcache的配置主要通过XML文件进行,可以设置缓存的大小、存活时间和过期时间等。...
- 提供缓存机制,如使用Hazelcast或 Ehcache,减少数据库交互,提升系统响应速度。 - 通过负载均衡和集群部署,实现高可用性和可伸缩性。 综上所述,Broadleaf Commerce 4.0.x是一个功能全面的电商解决方案,适合...
Spring+SpringMVC+Mybatis框架集成公共模块,包括公共配置、MybatisGenerator扩展插件、通用BaseService、工具类等。 > zheng-admin 基于bootstrap实现的响应式Material Design风格的通用后台管理系统,`zheng`...
│ 第24节:加入ehcache,把工程加入到Git.avi │ 第25节:实现前端的业务登录等功能.avi │ 第26节:测试并调整登录的业务功能.avi │ 第27节:实现index功能的开发.avi │ 第28节:Index、商品详细页和购物车.avi ...
还提到了如何在Ehcache中实现集群支持,以及Ehcache从2.x版本开始的一些变化。 此外,SpringSide还支持Memcached这种分布式内存对象缓存系统,提供了SpyMemcached、以及JVM中的嵌入式Memcached模拟器。Shiro ...
图片到图片装载器、绘制火焰效果的X坐标,Y坐标、得到X坐标,Y坐标值、绘制火焰效果Image…… Java加密解密工具集 JCT v1.0源码包 5个目标文件 内容索引:JAVA源码,综合应用,JCT,加密解密 WDSsoft的一款免费源代码 JCT ...
用户可以通过注解`@Cacheable`、`@CacheEvict`等控制缓存操作,源码中,Spring会根据配置选择合适的缓存管理器进行操作。 2. **工具和框架**: - **Ehcache**:一个广泛使用的开源Java缓存库,支持内存和磁盘存储...
- **Vert.x**:轻量级的事件驱动框架。 - **Netty**:高性能网络编程框架。 #### 缓存过期策略 - **基于时间的过期**:设置固定的过期时间。 - **基于引用的过期**:当引用不再被使用时自动清除。 - **基于容量的...