欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Spring 整合 Hibernate 时启用二级缓存实例详解

程序员文章站 2023-01-04 07:54:37
spring 整合 hibernate 时启用二级缓存实例详解 写在前面:   1. 本例使用 hibernate3 + spring3;   2. 本例的查询使...

spring 整合 hibernate 时启用二级缓存实例详解

写在前面:

  1. 本例使用 hibernate3 + spring3;
  2. 本例的查询使用了 hibernatetemplate;

1. 导入 ehcache-x.x.x.jar 包;

2. 在 applicationcontext.xml 文件中找到 sessionfactory 相应的配置信息并在设置 hibernateproperties 中添加如下代码:

<!-- 配置使用查询缓存 --> 
<prop key="hibernate.cache.use_query_cache">true</prop> 
<!-- 配置启用二级缓存 --> 
<prop key="hibernate.cache.use_second_level_cache">true</prop> 
<!-- 配置二级缓存的提供商 --> 
<prop key="hibernate.cache.provider_class">org.hibernate.cache.ehcacheprovider</prop> 



Spring 整合 Hibernate 时启用二级缓存实例详解

3. 由于查询使用了 hibernatetemplate,所以还要在 hibernatetemplate 中做相应配置,找到 hibernatetemplate 的配置项,添加如下代码:

<!-- 使用查询缓存 --> 
<property name="cachequeries"> 
  <value>true</value> 
</property> 

Spring 整合 Hibernate 时启用二级缓存实例详解

4. 在要缓存的实体类中加入如下注解:

@cache(usage = cacheconcurrencystrategy.read_write) 

注:

  usage 可以有以下几个取值:

  • cacheconcurrencystrategy.none:不使用缓存,默认;
  • cacheconcurrencystrategy.read_only:只读模式,若对缓存的数据进行修改操作会抛出异常;
  • cacheconcurrencystrategy.nonstrict_read_write:不严格的读写模式,不会对缓存的数据加锁;
  • cacheconcurrencystrategy.read_write:读写模式,在更新缓存的时候会把缓存里面的数据换成一个锁,其它事务如果去取相应的缓存数据,发现被锁了,直接就去数据库查询;
  • cacheconcurrencystrategy.transactional:事务模式,支持事务,当事务发生回滚时,缓存中的数据也回滚,只支持 jpa 。

5. 配置 ehcache.xml 文件:

<ehcache> 
  <!-- 指定一个文件目录,当ehcache把数据写到硬盘上时,将把数据写到这个目录下 --> 
  <diskstore path="java.io.tmpdir"/> 
  <!--  
    name 设置缓存的名字,他的取值为类的完整名字或者类的集合的名字; 
    maxelementsinmemory 设置基于内存的缓存可存放的对象的最大数目 
    eternal 如果为true,表示对象永远不会过期,此时会忽略timetoidleseconds和timetoliveseconds,默认为false; 
    timetoidleseconds 设定允许对象处于空闲状态的最长时间,以秒为单位; 
    timetoliveseconds 设定对象允许存在于缓存中的最长时间,以秒为单位; 
    overflowtodisk 如果为true,表示当基于内存的缓存中的对象数目达到maxelementsinmemory界限,会把溢出的对象写到基于硬盘的缓存中; 
   --> 
  <!-- 设置缓存的默认数据过期策略 --> 
  <defaultcache 
    maxelementsinmemory="1000" 
    eternal="false" 
    timetoidleseconds="1200" 
    timetoliveseconds="1200" 
    overflowtodisk="false" 
  /> 
  <!-- 设定具体的第二级缓存的数据过期策略 --> 
  <cache name="com.shawearn.model.user" 
    maxelementsinmemory="1000" 
    eternal="false" 
    timetoidleseconds="3000" 
    timetoliveseconds="3000" 
    overflowtodisk="false" /> 
</ehcache> 

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!