快速业务通道

Hibernate中二级缓存的配置和使用 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-21
-update"                 not-null="true">         </many-to-one>     </class> </hibernate-mapping>

2)编辑ehcache.xml文件:

<ehcache>     <diskStore path="c:\\ehcache\"/>     <defaultCache         maxElementsInMemory="10000"         eternal="false"         timeToIdleSeconds="120"         timeToLiveSeconds="120"         overflowToDisk="true"         />     <!-- 设置Category类的缓存的数据过期策略 -->     <cache name="org.qiujy.domain.cachedemo.Category"         maxElementsInMemory="100"         eternal="true"         timeToIdleSeconds="0"         timeToLiveSeconds="0"         overflowToDisk="false"         />      <!-- 设置Category类的products集合的缓存的数据过期策略 -->      <cache name="org.qiujy.domain.cachedemo.Category.products"         maxElementsInMemory="500"         eternal="false"         timeToIdleSeconds="300"         timeToLiveSeconds="600"         overflowToDisk="true"         />     <cache name="org.qiujy.domain.cachedemo.Product"         maxElementsInMemory="500"         eternal="false"         timeToIdleSeconds="300"         timeToLiveSeconds="600"         overflowToDisk="true"         /> </ehcache>

在Spring托管的Hibernate中使用二级缓存 1.在spring的配置文件中,hibernate部分加入 xml 代码 org.hibernate.cache.EhCacheProvider true 2.为HBM表设置cache策略 xml 代码 3.在DAO中,调用find方法查询之前,设置使用缓存 Java代码 getHibernateTemplate().setCacheQueries(true); 补充: 如果不设置“查询缓存”,那么hibernate只会缓存使用load()方法获得的单个持久化对象,如果想缓存使用findall()、list()、Iterator()、createCriteria()、createQuery()等方法获得的数据结果集的话,就需要设置 hibernate.cache.use_query_cache true 才行。

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号