第29讲--为Spring集成的Hibernate配置二级缓存

合理的使用缓存策略,往往在web开发中提高性能起到关键作用。

 

 

为Spring集成的Hibernate配置二级缓存 步骤:

 

1.修改beans.xml,加上 ,我们这里使用的EhCache,还有OSCache,JBossCache 也可以使用

 

                       <!-- 打开hibernate的二级缓存 -->
                        hibernate.cache.use_second_level_cache=true
                        <!-- 是否使用查询缓存 -->
                       hibernate.cache.use_query_cache=false
                       <!-- 使用缓存产品的驱动类 -->
                        hibernate.cache.provider_class=org.hibernate.cache.EhCacheProvider    

 

Java代码 复制代码  收藏代码
  1. <?xml version="1.0" encoding="UTF-8"?>   
  2. <beans xmlns="http://www.springframework.org/schema/beans"  
  3.        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  4.        xmlns:context="http://www.springframework.org/schema/context"  
  5.        xmlns:aop="http://www.springframework.org/schema/aop"  
  6.        xmlns:tx="http://www.springframework.org/schema/tx"  
  7.        xsi:schemaLocation="http://www.springframework.org/schema/beans   
  8.            http://www.springframework.org/schema/beans/spring-beans-2.5.xsd   
  9.            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd   
  10.            http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd   
  11.            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">   
  12.               
  13.           <context:annotation-config/>   
  14.                 <!-- 隐式的注入spring的一些bean处理器 比如   
  15.                         AutowiredAnnotationBeanPostProcessor    
  16.                         CommonAnnotationBeanPostProcessor    
  17.                         ersistenceAnnotationBeanPostProcessor    
  18.                         equiredAnnotationBeanPostProcessor    
  19.                  -->       
  20.            
  21.           <!-- 1.配置数据源 -->   
  22.              
  23.                    <context:property-placeholder location="classpath:jdbc.properties"/>   
  24.                   <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">   
  25.              
  26.                             <property name="driverClassName" value="${driverClassName}"/>   
  27.                     <property name="url" value="${url}"/>   
  28.                     <property name="username" value="${username}"/>   
  29.                     <property name="password" value="${password}"/>   
  30.                      <!-- 连接池启动时的初始值 -->   
  31.                          <property name="initialSize" value="${initialSize}"/>   
  32.                          <!-- 连接池的最大值 -->   
  33.                          <property name="maxActive" value="${maxActive}"/>   
  34.                          <!-- 最大空闲值.当经过一个高峰时间后,连接池可以慢慢将已经用不到的连接慢慢释放一部分,一直减少到maxIdle为止 -->   
  35.                          <property name="maxIdle" value="${maxIdle}"/>   
  36.                          <!--  最小空闲值.当空闲的连接数少于阀值时,连接池就会预申请去一些连接,以免洪峰来时来不及申请 -->   
  37.                          <property name="minIdle" value="${minIdle}"/>   
  38.                             
  39.                 </bean>   
  40.         <!-- 2.配置 sessionFactory,让spring容器来管理-->   
  41.         <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">   
  42.            
  43.   
  44.            
  45.              <property name="dataSource" ref="dataSource"/>   
  46.                 
  47.                  <property name="mappingResources">   
  48.                     <list>   
  49.                       <value>cn/com/xinli/bean/Person.hbm.xml</value>   
  50.                     </list>   
  51.                  </property>   
  52.              <property name="hibernateProperties">   
  53.                 
  54.                     <value>   
  55.                         hibernate.dialect=org.hibernate.dialect.MySQL5Dialect   
  56.                         <!-- 表示使用根据映射元数据生成表结构 -->   
  57.                         hibernate.hbm2ddl.auto=update   
  58.                         hibernate.show_sql=true  
  59.                         hibernate.format_sql=true  
  60.                         <!-- 打开hibernate的二级缓存 -->   
  61.                         hibernate.cache.use_second_level_cache=true  
  62.                         <!-- 是否使用查询缓存 -->   
  63.                         hibernate.cache.use_query_cache=false  
  64.                         <!-- 使用缓存产品的驱动类 -->   
  65.                         hibernate.cache.provider_class=org.hibernate.cache.EhCacheProvider                
  66.                       </value>   
  67.              </property>   
  68.                 
  69.         </bean>   
  70.         <!-- 3.配置事务管理器,用来管理 sessionFactory创建的session-->   
  71.         <bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">   
  72.                   <property name="sessionFactory" ref="sessionFactory"/>   
  73.         </bean>   
  74.            
  75.         <!-- 4.配置事务管理器的实现方式 注解 -->   
  76.            
  77.         <tx:annotation-driven transaction-manager="txManager"/>                                 
  78.         <bean id="personService" class="cn.com.xinli.service.impl.PersonServiceBean"/>   
  79.         <bean name="/list" class="cn.com.xinli.web.action.PersonAction"/>   
  80. </beans>  
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
           http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
           http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
           
          <context:annotation-config/>
                <!-- 隐式的注入spring的一些bean处理器 比如
                        AutowiredAnnotationBeanPostProcessor 
                        CommonAnnotationBeanPostProcessor 
                        ersistenceAnnotationBeanPostProcessor 
                        equiredAnnotationBeanPostProcessor 
                 -->    
        
          <!-- 1.配置数据源 -->
          
                   <context:property-placeholder location="classpath:jdbc.properties"/>
                  <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
          
                            <property name="driverClassName" value="${driverClassName}"/>
                    <property name="url" value="${url}"/>
                    <property name="username" value="${username}"/>
                    <property name="password" value="${password}"/>
                     <!-- 连接池启动时的初始值 -->
                         <property name="initialSize" value="${initialSize}"/>
                         <!-- 连接池的最大值 -->
                         <property name="maxActive" value="${maxActive}"/>
                         <!-- 最大空闲值.当经过一个高峰时间后,连接池可以慢慢将已经用不到的连接慢慢释放一部分,一直减少到maxIdle为止 -->
                         <property name="maxIdle" value="${maxIdle}"/>
                         <!--  最小空闲值.当空闲的连接数少于阀值时,连接池就会预申请去一些连接,以免洪峰来时来不及申请 -->
                         <property name="minIdle" value="${minIdle}"/>
                         
                </bean>
        <!-- 2.配置 sessionFactory,让spring容器来管理-->
        <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
        

        
             <property name="dataSource" ref="dataSource"/>
             
                 <property name="mappingResources">
                    <list>
                      <value>cn/com/xinli/bean/Person.hbm.xml</value>
                    </list>
                 </property>
             <property name="hibernateProperties">
             
                    <value>
                        hibernate.dialect=org.hibernate.dialect.MySQL5Dialect
                        <!-- 表示使用根据映射元数据生成表结构 -->
                        hibernate.hbm2ddl.auto=update
                        hibernate.show_sql=true
                        hibernate.format_sql=true
                        <!-- 打开hibernate的二级缓存 -->
                        hibernate.cache.use_second_level_cache=true
                        <!-- 是否使用查询缓存 -->
       	       			hibernate.cache.use_query_cache=false
       	       			<!-- 使用缓存产品的驱动类 -->
        	      		hibernate.cache.provider_class=org.hibernate.cache.EhCacheProvider             
                      </value>
             </property>
             
        </bean>
        <!-- 3.配置事务管理器,用来管理 sessionFactory创建的session-->
        <bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
                  <property name="sessionFactory" ref="sessionFactory"/>
        </bean>
        
        <!-- 4.配置事务管理器的实现方式 注解 -->
        
        <tx:annotation-driven transaction-manager="txManager"/>                              
        <bean id="personService" class="cn.com.xinli.service.impl.PersonServiceBean"/>
        <bean name="/list" class="cn.com.xinli.web.action.PersonAction"/>
</beans>

 

 

2.*.hbm.xml 中

 

Java代码 复制代码  收藏代码
  1. <?xml version="1.0" encoding="UTF-8"?>   
  2. <!DOCTYPE hibernate-mapping PUBLIC   
  3.         "-//Hibernate/Hibernate Mapping DTD 3.0//EN"  
  4.         "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">   
  5. <hibernate-mapping package="cn.com.xinli.bean">   
  6.     <class name="Person" table="person">   
  7.     <!-- 增加缓存支持 -->   
  8.     <cache usage="read-write" region="cn.com.xinli.bean.Person"/>   
  9.         <id name="id" type="int">   
  10.         <!--  Native主键生成方式会根据不同的底层数据库自动选择   
  11.         Identity、Sequence、Hilo主键生成方式,这里使用的是mysql   
  12.          则主键的生成方式为自增长。   
  13.          -->   
  14.             <generator class="native"/>   
  15.         </id>   
  16.         <property name="name" length="10" not-null="true"/>   
  17.     </class>   
  18. </hibernate-mapping>  
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC
        "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
        "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="cn.com.xinli.bean">
    <class name="Person" table="person">
    <!-- 增加缓存支持 -->
    <cache usage="read-write" region="cn.com.xinli.bean.Person"/>
        <id name="id" type="int">
        <!--  Native主键生成方式会根据不同的底层数据库自动选择
        Identity、Sequence、Hilo主键生成方式,这里使用的是mysql
         则主键的生成方式为自增长。
         -->
            <generator class="native"/>
        </id>
        <property name="name" length="10" not-null="true"/>
    </class>
</hibernate-mapping>

 

 

3.配置EHcache的配置文件 ehcache.xml(放在类路径下)

Java代码 复制代码  收藏代码
  1. <?xml version="1.0" encoding="UTF-8"?>   
  2. <!--    
  3.     defaultCache节点为缺省的缓存策略   
  4.      maxElementsInMemory 内存中最大允许存在的对象数量   
  5.      eternal 设置缓存中的对象是否永远不过期   
  6.      overflowToDisk 把溢出的对象存放到硬盘上   
  7.      timeToIdleSeconds 指定缓存对象空闲多长时间就过期,过期的对象会被清除掉   
  8.      timeToLiveSeconds 指定缓存对象总的存活时间   
  9.      diskPersistent 当jvm结束是是否持久化对象   
  10.      diskExpiryThreadIntervalSeconds 指定专门用于清除过期对象的监听线程的轮询时间   
  11.  -->   
  12. <ehcache>   
  13.     <diskStore path="D:\cache"/>   
  14.     <defaultCache  maxElementsInMemory="1000" eternal="false" overflowToDisk="true"  
  15.         timeToIdleSeconds="120"  
  16.         timeToLiveSeconds="180"  
  17.         diskPersistent="false"  
  18.         diskExpiryThreadIntervalSeconds="60"/>   
  19.     <cache name="cn.itcast.bean.Person" maxElementsInMemory="100" eternal="false"  
  20.     overflowToDisk="true" timeToIdleSeconds="300" timeToLiveSeconds="600" diskPersistent="false"/>   
  21. </ehcache>  
<?xml version="1.0" encoding="UTF-8"?>
<!-- 
    defaultCache节点为缺省的缓存策略
     maxElementsInMemory 内存中最大允许存在的对象数量
     eternal 设置缓存中的对象是否永远不过期
     overflowToDisk 把溢出的对象存放到硬盘上
     timeToIdleSeconds 指定缓存对象空闲多长时间就过期,过期的对象会被清除掉
     timeToLiveSeconds 指定缓存对象总的存活时间
     diskPersistent 当jvm结束是是否持久化对象
     diskExpiryThreadIntervalSeconds 指定专门用于清除过期对象的监听线程的轮询时间
 -->
<ehcache>
    <diskStore path="D:\cache"/>
    <defaultCache  maxElementsInMemory="1000" eternal="false" overflowToDisk="true"
        timeToIdleSeconds="120"
        timeToLiveSeconds="180"
        diskPersistent="false"
        diskExpiryThreadIntervalSeconds="60"/>
	<cache name="cn.itcast.bean.Person" maxElementsInMemory="100" eternal="false"
    overflowToDisk="true" timeToIdleSeconds="300" timeToLiveSeconds="600" diskPersistent="false"/>
</ehcache>

 

 

测试: 首先使用getBean 从数据库得到一个Person对象,线程终止10秒,在掉getBean ,期间去关闭数据库,如果还能得到Person 对象,则认为第2次得到的Person 对象是从缓存中得到的

 

 

测试用例

 

Java代码 复制代码  收藏代码
  1. @Test  
  2.     public void testGetPersonP()   
  3.     {   
  4.            
  5.         Person person=perService.getPerson(new Integer(1));   
  6.         System.out.println("id:"+person.getId());   
  7.         System.out.println("name:"+person.getName());   
  8.         System.out.println("请关闭数据库...");   
  9.         try {   
  10.             Thread.sleep(10000);   
  11.         } catch (InterruptedException e) {   
  12.             // TODO Auto-generated catch block   
  13.             e.printStackTrace();   
  14.         }   
  15.         Person person2=perService.getPerson(new Integer(1));   
  16.         System.out.println("id:"+person2.getId());   
  17.         System.out.println("name:"+person2.getName());   
  18.     }  
@Test
	public void testGetPersonP()
	{
		
		Person person=perService.getPerson(new Integer(1));
		System.out.println("id:"+person.getId());
		System.out.println("name:"+person.getName());
		System.out.println("请关闭数据库...");
		try {
			Thread.sleep(10000);
		} catch (InterruptedException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		Person person2=perService.getPerson(new Integer(1));
		System.out.println("id:"+person2.getId());
		System.out.println("name:"+person2.getName());
	}

 

结果:

 

 

Java代码 复制代码  收藏代码
  1. Hibernate:    
  2.     select   
  3.         person0_.id as id0_0_,   
  4.         person0_.name as name0_0_    
  5.     from   
  6.         person person0_    
  7.     where   
  8.         person0_.id=?   
  9. id:1  
  10. name:胡晓亮   
  11. 请关闭数据库...   
  12. id:1  
  13. name:胡晓亮  
Hibernate: 
    select
        person0_.id as id0_0_,
        person0_.name as name0_0_ 
    from
        person person0_ 
    where
        person0_.id=?
id:1
name:胡晓亮
请关闭数据库...
id:1
name:胡晓亮

 

 可见缓存生效了。。

你可能感兴趣的:(spring,AOP,Hibernate,bean,配置管理)