什么是二级缓存
二级缓存在Hibernate中对应为SessionFactory范围的缓存,通常来讲sessionfactory的生命周期和应用的生命周期相同,所以可以看成是进程缓存或集群缓存。
二级缓存由SessionFactory创建所有Session对象共享使用,二级缓存是使用第三方的缓存插件实现的。
不适合加载到二级缓存中的情况
1.经常被修改的数据
2.绝对不允许出现并访问的数据
3.与其他应用共享的数据
适合加载到二级缓存中的数据:
1.数据更新频率低
2.允许偶尔初见并发问题的非重要数据
3.不会被并发访问的数据
4.常量数据
5.不会被第三方修改的数据
因为二级缓存需要第三方插件,所以接下来配置第三方插件
1)常用二级缓存插件
1.EhCahe:可作为进程范围的缓存,存放数据的物理介质可以是内存或硬盘。org.hibernate.cache.EhCacheProvider
2.OSCache:可作为进程范围的缓存,存放数据的物理介质可以是内存或硬盘,提供了丰富的缓存数据过期策略。
org.hibernate.cache.OSCacheProvider
3.SwarmCache:可作为群集范围内的缓存,但不支持Hibernate的查询缓存。org.hibernate.cache.SwarmCacheProvider
4.JBossCache:可作为群集范围内的缓存,支持事物型并发访问。org.hibernate.cache.TreeCacheProvider
2)配置EhCahe插件
1.将架包导入到工程
2.配置hibernate.cfg.xml文件
设置属性开启二级缓存:
<span style="font-family:SimSun;font-size:14px;"><property name="hibernate.cache.use_second_level_cache">true</property></span>
指定缓存产品提供商:<span style="font-family:SimSun;font-size:14px;"><property name="hibernate.cache.provider_class">
org.hibernate.cache.EhCacheProvider
</property></span>
3.配置ehcache.xml文件<span style="font-family:SimSun;font-size:14px;"><ehcache>
<diskStore path="java.io.tmpdir"/>
<!--
maxElementsInMemory - 设置缓存最大数目
eternal - 设置缓存中的数据是否失效true为永不过期。
timeToIdleSeconds - 缓存数据存在时间,单位是秒
timeToLiveSeconds - 指定缓存时间到了以后在过多长时间释放缓存数据,单位是秒
overflowToDisk - 是否将一处的对象写到基于硬盘的缓存中
-->
<defaultCache
maxElementsInMemory="10000"
eternal="false"
timeToIdleSeconds="120"
timeToLiveSeconds="120"
overflowToDisk="true"
/>
</ehcache></span>
4.指定可以使用二级缓存的持久化类(1).第一种:在对应的*.hbm.xml文件中填写
<span style="font-family:SimSun;font-size:14px;"><class>
<Cache usage="" region="" include=""/>
.....
</class></span>
(2).第二种:在hibernate.cgf.xml中配置<span style="font-family:SimSun;font-size:14px;"><class-cache class="" usage="read-write"/> class属性为包名加类名</span>
<cache>属性:usage属性是必须的,指定并发访问策略,取值为transactional(事务缓存)、read-write(读写缓存)、nonstrict-read-write(非严格读写缓存)、read-only(只读缓存)。
region属性可选,默认为类或者集合的名称。就是你在ehcache.xml文件中设置缓存名字
include属性可选,取值为non-lazy(当缓存一个对象时,不会缓存它的映射为延迟加载的属性)、all,默认为all
二级缓存的管理:
使用SessiongFactory对象获取Cache对象,sessionFactory.getCache();通过Cache来管理二级缓存。