最近研究了一下Ehcache集成Spring、Hibernate中用法,Ehcache处理缓存的确是一个很好一个项目,毕竟是被Hibernate和spring两大开源流行框架所支持的嘛spring两大开源流行框架所支持的嘛
下面以例子来讲解Hibernate如何使用Ehcache:
首先说明下,Hibernate的一级缓存都在调用HttpSession中的方法时候由hibernate内部自己处理,不可卸载。
hibernate.cfg.xml文件:
<session-factory>
<property name="dialect">org.hibernate.dialect.SQLServerDialect</property>
<property name="connection.url">jdbc:sqlserver://localhost:1433;databaseName=mytest</property>
<property name="connection.username">sa</property>
<property name="connection.password">sa</property>
<property name="connection.driver_class">com.microsoft.sqlserver.jdbc.SQLServerDriver</property>
<property name="show_sql">true</property>
<property name="format_sql">false</property>
<property name="hibernate.cache.use_second_level_cache">true</property>
<property name="hibernate.cache.use_query_cache">true</property>
<property name="cache.provider_class">org.hibernate.cache.EhCacheProvider</property>
<property name="cache.provider_configuration_file_resource_path">ehcache.xml</property>
<mapping class="com.xhy.ehcache.domain.Person"/>
</session-factory>
hibernate启用二级缓存、查询缓存及加载ehcache.xml文件,下面几项必须配置
<property name="hibernate.cache.use_second_level_cache">true</property>
<property name="hibernate.cache.use_query_cache">true</property>
<property name="cache.provider_class">org.hibernate.cache.EhCacheProvider</property>
<property name="cache.provider_configuration_file_resource_path">ehcache.xml</property>
ehcache.xml
<defaultCache
maxEntriesLocalHeap="10000"
eternal="false"
timeToIdleSeconds="120"
timeToLiveSeconds="120"
diskSpoolBufferSizeMB="30"
maxEntriesLocalDisk="10000000"
diskExpiryThreadIntervalSeconds="120"
memoryStoreEvictionPolicy="LRU">
<persistence strategy="localTempSwap"/>
</defaultCache>
<cache name="person"
maxElementsInMemory="10000"
eternal="false"
timeToIdleSeconds="300"
timeToLiveSeconds="600"
overflowToDisk="true" />
<!-- 如果你使用了Hibernate的查询缓存,需要在ehcache.xml中加入下面的配置-->
<cache name="org.hibernate.cache.UpdateTimestampsCache"
maxElementsInMemory="5000"
eternal="true"
overflowToDisk="true" />
<cache name="org.hibernate.cache.StandardQueryCache"
maxElementsInMemory="10000"
eternal="false"
timeToLiveSeconds="120"
overflowToDisk="true" />
name: cache的名字,用来识别不同的cache,必须惟一。
maxElementsInMemory: 内存管理的缓存元素数量最大限值。
maxElementsOnDisk: 硬盘管理的缓存元素数量最大限值。默认值为0,就是没有限制。
eternal: 设定元素是否持久话。若设为true,则缓存元素不会过期。
overflowToDisk: 设定是否在内存填满的时候把数据转到磁盘上。
timeToIdleSeconds: 设定元素在过期前空闲状态的时间,只对非持久性缓存对象有效。默认值为0,值为0意味着元素可以闲置至无限长时间。
timeToLiveSeconds: 设定元素从创建到过期的时间。其他与timeToIdleSeconds类似。
diskPersistent: 设定在虚拟机重启时是否进行磁盘存储,默认为false.(我的直觉,对于安全小型应用,宜设为true)。
diskExpiryThreadIntervalSeconds: 访问磁盘线程活动时间。
diskSpoolBufferSizeMB: 存入磁盘时的缓冲区大小,默认30MB,每个缓存都有自己的缓冲区。
memoryStoreEvictionPolicy: 元素逐出缓存规则。共有三种,Recently Used (LRU)最近最少使用,为默认。 First In First Out (FIFO),先进先出。Less Frequently Used(specified as LFU)最少使用
测试实现类:
public static void main(String[] args) {
//org.hibernate.cache.EhCache.
Session s = HibernateSessionFactory.getSession();
Criteria c=s.createCriteria(Person.class);
c.setCacheable(false);
c.setCacheRegion("person");
long s1 = System.currentTimeMillis();
List l=c.list();
System.out.println("第一次查询:"+UtilTool.getTime(s1));
long s2 = System.currentTimeMillis();
c.list();
System.out.println("第2次查询:"+UtilTool.getTime(s2));
for (int i = 0; i < 10; i++) {
long s3 = System.currentTimeMillis();
c.list();
System.out.println("多次("+(i+1)+")查询:"+UtilTool.getTime(s3));
}
HibernateSessionFactory.closeSession();
s=HibernateSessionFactory.getSession();
//s.clear();
c=s.createCriteria(Person.class);
c.setCacheable(false);
c.setCacheRegion("person");
long s4 = System.currentTimeMillis();
l=c.list();
System.out.println("**第一次查询:"+UtilTool.getTime(s4));
long s5 = System.currentTimeMillis();
c.list();
System.out.println("**第2次查询:"+UtilTool.getTime(s5));
for (int i = 0; i < 10; i++) {
long s6 = System.currentTimeMillis();
c.list();
System.out.println("多次("+(i+1)+")查询:"+UtilTool.getTime(s6));
}
/*Query q=s.createQuery("from Person").setCacheable(true)
.setCacheRegion("person");
l=q.list();*/
HibernateSessionFactory.closeSession();
}
[size=medium][b]执行测试类,只用当第一次执行的时候才从数据库里面去,以后执行去缓存取。
工作流程:缓存中有,从缓存中返回;缓存中没有,去数据库取。
c.setCacheable(true);//启用缓存
c.setCacheRegion("person");//注册ehcache.xml文件缓存名称
[/b][/size]
分享到:
相关推荐
【描述】:“Hibernate 是一款流行的 Java 持久层框架,而 Ehcache 是一个高效的分布式内存缓存系统。将两者结合,能够极大地提升应用的性能,减少数据库的负载,特别是在处理大量读取操作时。本文将深入探讨 ...
2. **Ehcache集成** 首先,引入Ehcache的jar包,然后在Spring配置文件中声明EhcacheManagerFactoryBean,配置Ehcache的缓存策略,如缓存大小、过期时间等。Ehcache的缓存可以分为内存和磁盘两部分,可以根据需求...
总结来说,这篇博客可能涵盖了如何在Hibernate项目中集成Ehcache,包括添加依赖、配置缓存策略、实体类缓存注解等步骤。了解和正确使用Hibernate与Ehcache的缓存机制,能够显著提升Java应用的性能,减少数据库压力,...
总之,这三个jar包是Hibernate集成Ehcache进行二级缓存管理所必需的。通过合理配置和使用,它们可以帮助优化数据库访问,提高Java应用的整体性能。在实际开发中,理解并熟练掌握Hibernate和Ehcache的结合使用,对于...
在"Spring+Hibernate+ehcache整合"项目中,开发者已经完成了一个将这三个框架集成的基础工程。虽然Struts没有被明确提及,但通常在Web开发中,Spring与Struts结合可以构建更完整的MVC架构。这个整合项目可能包含以下...
在Java Web开发领域,Spring、Spring MVC、Hibernate和Ehcache是四个非常关键的框架,它们共同构建了一个强大且高效的后台开发环境。下面将详细解释这些框架的核心功能和使用方式。 1. **Spring框架**:Spring是...
3. **集成Ehcache与Hibernate**:在Hibernate中配置Ehcache作为二级缓存,可以将频繁查询的数据保存在内存中,避免重复的数据库调用。这涉及到修改Hibernate配置文件(如`hibernate.cfg.xml`),添加Ehcache的相关...
在Spring和Hibernate集成的开发环境中,使用EhCache作为缓存机制是常见的优化策略,它能够显著提升应用程序的性能和响应速度。EhCache是一款开源的、高性能的、内存级的分布式缓存解决方案,适用于Java应用程序。...
【标题】"hibernate-ehcache-4.1.4.Final.zip" 提供的是Hibernate ORM框架的一个版本,其中集成了Ehcache作为二级缓存解决方案。Hibernate是一个流行的Java对象关系映射(ORM)工具,它允许开发人员将数据库操作转化...
Ehcache还可以与Spring集成,方便地在Spring应用中使用缓存功能。 在实际项目中,这四个框架的整合使用能够构建出高性能的Java后台系统。Spring作为基础架构,负责管理和协调各个组件;Spring MVC处理HTTP请求,...
6.Hibernate继承 HibernateDaoSupport。 7.Spring+Junit4单元测试,优点:不会破坏数据库现场,等等。 2)Demo 导入说明: 1.Eclipse Encoding:GBK 2.Eclipse 导入后可能需要在 Xml Catalog 手动添加:ehcache-...
在`HibernateDemo1.zip`中,你可能会看到如何集成Ehcache到Hibernate项目的例子,这包括: 1. 引入Ehcache的依赖库。 2. 配置`hibernate.cfg.xml`以启用二级缓存并指定Ehcache配置文件。 3. 在实体类或映射文件中...
【Spring Boot 使用 JSP 集成 Hibernate+Shiro+Ehcache 项目详解】 Spring Boot 是一个基于 Spring 框架的高度集成了多种技术的开发工具,它简化了配置过程,使得开发人员能够快速构建可运行的应用程序。在这个项目...
总的来说,这个项目展示了如何使用Spring Boot搭建一个基于Hibernate的数据访问层,利用Ehcache实现缓存功能,同时借助Maven进行项目管理和构建。开发者可以参考这个源码,学习如何在自己的项目中整合这些技术,提升...
Spring,Spring MVC,Hibernate,以及Ehcache是Java开发中常用的四大框架,它们共同构建了高效、稳定的后台应用体系。 Spring框架是Java企业级应用的事实标准,它提供了一个全面的编程和配置模型,用于简化企业级...
一、Ehcache的集成 1. 引入Ehcache库:首先,我们需要将Ehcache的jar包(如ehcache-1.2.3.jar)添加到项目的类路径(classpath)中。这可以通过Maven或Gradle等构建工具完成,或者手动将jar包放入项目的lib目录。 ...
EhCache是一款广泛使用的开源Java缓存解决方案,它可以与Hibernate无缝集成,以提高数据读取速度,降低数据库负载。 在"Hibernate + EhCache 实现数据缓存的处理"这个主题中,我们将探讨如何利用这两者来优化数据...
在本项目中,我们主要探讨的是一个基于Maven构建的Java Web应用,它整合了Spring 4、Hibernate 4、Apache Shiro以及Ehcache等多个关键框架,旨在实现用户角色菜单管理的功能。以下是对这些技术及其集成应用的详细...
1. **hibernate-ehcache-configuration**:包含了集成Ehcache所需的配置文件,例如`ehcache.xml`,在这个文件中定义了缓存策略和缓存区域。 2. **hibernate-ehcache-annotations**:提供了注解支持,使得开发者可以...
Ehcache是Hibernate支持的二级缓存提供者之一,它具有高效、可扩展和易于配置的特点。Ehcache分为两种缓存区域:**Session级缓存** 和 **Region级缓存**。Session级缓存只存在于当前SessionFactory的生命周期内,而...