S2S3H4框架深度集成搭建(3) hi

发布时间:2019-09-05 07:02:05编辑:auto阅读(1592)

    之前分别写了集成struts2,以及spring3的关键问题,就剩hibernate4了,但是其中并不需要什么特殊的地方。只是将hibernate的配置全部转换到spring的配置中去而已。网上搜一搜有大量的技术文章,我这里就不详细赘述了,只是将本人的配置文件内容贴出来供大家参考:

    1. <?xml version="1.0" encoding="UTF-8"?> 
    2. <beans xmlns="http://www.springframework.org/schema/beans" 
    3.        xmlns:aop="http://www.springframework.org/schema/aop" 
    4.        xmlns:tx="http://www.springframework.org/schema/tx" 
    5.        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    6.        xsi:schemaLocation="http://www.springframework.org/schema/beans  
    7.            http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  
    8.            http://www.springframework.org/schema/tx   
    9.            http://www.springframework.org/schema/tx/spring-tx-3.0.xsd  
    10.            http://www.springframework.org/schema/aop   
    11.            http://www.springframework.org/schema/aop/spring-aop-3.0.xsd"  
    12.            default-lazy-init="true" default-autowire="byName"> 
    13.            
    14.     <import resource="datasource-config.xml"/>   
    15.     <import resource="hibernate-properties.xml"/> 
    16.     <import resource="transaction-config.xml"/>   
    17.     <import resource="application-project.xml"/>     
    18.     <import resource="../../resource/bean/base.xml"/>   
    19. </beans> 

     上面配置部分,引用了多个其他配置,这个文件也就是我得主配置文件,第一个导入,是数据源,第二个是hibernate的属性以及映射配置,第三个是将事务叫给spring管理的配置。其他的事项目级别的配置,以及业务部分开发的基础配置,咱们只关注与hibernate相关的配置,如下:

     

    1. 数据源配置,本人使用的proxool连接池     
    2. <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">     
    3.         <property name="driverClassName">     
    4.             <value>org.logicalcobwebs.proxool.ProxoolDriver</value>     
    5.         </property>     
    6.         <property name="url">     
    7.             <value>proxool.core</value>     
    8.         </property>     
    9.     </bean>        
    10. hibernate的属性以及映射配置  
    11.  
    12. <bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean"> 
    13.         <property name="dataSource" ref="dataSource"/> 
    14.         <property name="mappingResources"> 
    15.             <list> 
    16.                 <value>com/xk/model/XkBaseCity.hbm.xml</value> 
    17.                 <value>com/xk/model/XkBaseProvince.hbm.xml</value> 
    18.                 <value>com/xk/model/XkSystemDate.hbm.xml</value> 
    19.                 <value>com/xk/model/XkTrain.hbm.xml</value> 
    20.             </list> 
    21.         </property> 
    22.         <property name="hibernateProperties"> 
    23.             <props> 
    24.                 <prop key="hibernate.show_sql">true</prop> 
    25.                 <prop key="hibernate.format_sql">false</prop> 
    26.                 <prop key="hibernate.jdbc.use_scrollable_resultset">false</prop> 
    27.                 <prop key="hibernate.dialect">org.hibernate.dialect.SQLServerDialect</prop> 
    28.                 <prop key="hibernate.current_session_context_class">org.springframework.orm.hibernate4.SpringSessionContext</prop>   
    29.             </props> 
    30.         </property> 
    31.     </bean>     
    32.  
    33. 下面是事务管理配置:  
    34.  <bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager"> 
    35.         <property name="sessionFactory" ref="sessionFactory"/> 
    36.     </bean> 
    37.  
    38.     <aop:config> 
    39.         <aop:pointcut id="pointcutMethods" expression="execution(* com.xk..boimpl.*Impl.*(..))"/> 
    40.         <aop:advisor advice-ref="transactionAdvice" pointcut-ref="pointcutMethods"/> 
    41.     </aop:config> 
    42.       
    43.     <tx:advice id="transactionAdvice" transaction-manager="transactionManager"> 
    44.         <tx:attributes> 
    45.             <tx:method name="get*" read-only="true" propagation="REQUIRED" /> 
    46.             <tx:method name="find*" read-only="true" propagation="REQUIRED" /> 
    47.             <tx:method name="query*" read-only="true" propagation="REQUIRED" /> 
    48.             <tx:method name="add*" propagation="REQUIRED" /> 
    49.             <tx:method name="set*" propagation="REQUIRED" /> 
    50.             <tx:method name="put*" propagation="REQUIRED" /> 
    51.             <tx:method name="save*" propagation="REQUIRED" /> 
    52.             <tx:method name="update*" propagation="REQUIRED" /> 
    53.             <tx:method name="delete*" propagation="REQUIRED" /> 
    54.             <tx:method name="*" read-only="true" propagation="REQUIRED"/> 
    55.         </tx:attributes> 
    56.     </tx:advice>  

     

关键字