1.这种问题在面试中遇到过多次了,所以特意总结了一下。
缓存作用:
减少程序对数据库的访问次数,提高效率。
hibernate缓存分为两种:
一级缓存:
hibernate缓存由session提供,是hibernate自带的,在session的生命周期内有效。
二级缓存:
二级缓存需要自己手动配置,我们需要再spring配置文件中配置:
<prop key="hibernate.cache.use_second_level_cache">true</prop>《设置缓存机制为二级缓存》
<prop key="hibernate.cache.use_query_cache">true</prop>《启动查询缓存》
<prop key="hibernate.cache.region.factory_class">org.hibernate.cache.ehcache.EhCacheRegionFactory</prop>《设置缓存提供类》
<prop key="net.sf.ehcache.configurationResourceName">ehcache/ehcache-hibernate-local.xml</prop>《设置缓存对象所在的xml》