yasashikokoro 2011-02-25
通过配置二级缓存可以提高系统的性能.
1.在要使用二级缓存的映射文件中配置cache节点:
<cache usage="read-write"/>
2.在cfg系统文件中配置:
<property name="cache.use_second_level_cache">true</property>打开使用二级缓存
<property name="cache.provider_class">org.hibernate.cache.EhCacheProvider</property>配置二级缓存的提供商
这里的二级缓存提供商可以使用:ehcache,oscache,jbosscache,proxool.常用的有encache,oscache
3.如果使用encache提供的二级缓存,还要将ehcache.xml文件加入到类路径下(这里使用的是ehcache)