Spring整合Hibernate的事務管理

u011002024發表於2016-02-17

筆者遇到蛋疼的 畢業設計。為了不浪費時間做無聊的設計,決定趁這個機會練習一下SSH。但是在配置spring事物管理時遇到了不少麻煩。

對映 *.hbm.xml檔案的時候  此類檔案放在src下對應的包中,不知是否應該加上classpath。曾經有段時間沒加上classpath 並不會報錯 ,但是今天改動了spring配置檔案,則除了問題,找了老半天,在前面加上classpath就OK了,這個問題出現的太奇葩。

切記session.openssion()必須手動進行關閉。

這是學SSH後時隔三個月再進行一次實際操作,雖然中間基本沒再接觸過,但是覺得簡單了許多。    還得好好學學Spring。


附上Spring配置檔案 ,以後可當模板用

<?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:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="
              http://www.springframework.org/schema/context
                http://www.springframework.org/schema/context/spring-context.xsd
            http://www.springframework.org/schema/beans
            http://www.springframework.org/schema/beans/spring-beans.xsd
            http://www.springframework.org/schema/aop
            http://www.springframework.org/schema/aop/spring-aop.xsd
            http://www.springframework.org/schema/tx
            http://www.springframework.org/schema/tx/spring-tx.xsd">

    
    
    <!-- 自動掃描裝配bean -->
    <context:component-scan base-package="com.mjia.*"></context:component-scan>
    <!-- 匯入外部的properties檔案 -->
    <context:property-placeholder location="classpath:jdbc.properties"/>
    <!-- 配置SessionFactory -->
    <bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
        <property name="mappingLocations">
           <list>
              <value>classpath:com/mjia/orm/userInfo.hbm.xml</value>    
           </list>
        </property>
        <!-- 指定hibernate的配置檔案位置 -->
        <!-- <property name="configLocation" value="classpath:hibernate.cfg.xml"></property> -->
        <!-- 配置c3p0資料庫連線池 -->
        <property name="dataSource">
            <bean class="com.mchange.v2.c3p0.ComboPooledDataSource">
                <property name="jdbcUrl" value="${jdbcUrl}"></property>
                <property name="driverClass" value="${driverClass}"></property>
                <property name="user" value="${user}"></property>
                <property name="password" value="${password}"></property>
                <!-- 其他配置 -->
                <!--初始化時獲取三個連線,取值應在minPoolSize與maxPoolSize之間。Default: 3 -->
                <property name="initialPoolSize" value="3"></property>
                <!--連線池中保留的最小連線數。Default: 3 -->
                <property name="minPoolSize" value="3"></property>
                <!--連線池中保留的最大連線數。Default: 15 -->
                <property name="maxPoolSize" value="5"></property>
                <!--當連線池中的連線耗盡的時候c3p0一次同時獲取的連線數。Default: 3 -->
                <property name="acquireIncrement" value="3"></property>
                <!-- 控制資料來源內載入的PreparedStatements數量。如果maxStatements與maxStatementsPerConnection均為0,則快取被關閉。Default: 0 -->
                <property name="maxStatements" value="8"></property>
                <!--maxStatementsPerConnection定義了連線池內單個連線所擁有的最大快取statements數。Default: 0 -->
                <property name="maxStatementsPerConnection" value="5"></property>
                <!--最大空閒時間,1800秒內未使用則連線被丟棄。若為0則永不丟棄。Default: 0 -->
                <property name="maxIdleTime" value="1800"></property>
           
            </bean>
        </property>
         <property name="hibernateProperties">  
                <props>  
                   <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
                    <!-- <prop key= "hibernate.current_session_context_class">thread</prop> -->
                   <prop key="hibernate.connection.autocommit">true</prop>
                   <prop key="hibernate.show_sql">true</prop>  
                   <prop key="hibernate.format_sql">true</prop>
                   <prop key="hibernate.hbm2ddl.auto">update</prop>  
                </props>  
         </property>  
    </bean>

    <bean name="userDao" class="com.mjia.daoimpl.normalUserImpl">
        <property name="sessionFactory" ref="sessionFactory"></property>
    </bean>
            
        <bean name="loginAction" class="com.mjia.action.userLoginAction">
        <property name="userdao" ref="userDao">
        </property>
        <property name="form" ref="userLoginForm">
        </property>
    </bean>
        <bean name="registerAction" class="com.mjia.action.userRegisterAction">
        <property name="userdao" ref="userDao">
        </property>
    </bean>
    
    <bean name="userInfo" class="com.mjia.orm.userInfo"></bean>
    <bean name="adminInfo" class="com.mjia.orm.adminInfo"></bean>
    <bean name="userLoginForm" class="com.mjia.form.userLoginForm"></bean>
        <bean name="roleManager" class="com.mjia.action.roleManagerAction">
    </bean>
    <bean name="systemManagement" class="com.mjia.action.systemManagementAction">
    </bean>
    
            <!-- 定義事務管理器(宣告式的事務) -->    
    <bean id="transactionManager"  
        class="org.springframework.orm.hibernate4.HibernateTransactionManager">  
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>  
 
    <tx:advice id="txAdvice" transaction-manager="transactionManager">  
        <tx:attributes>
            <tx:method name="*" propagation="REQUIRED" />  
        </tx:attributes>  
    </tx:advice>  
      
    <aop:config>  
        <aop:pointcut id="interceptorPointCuts"  
            expression="execution(* com.mjia.daoimpl.*.*(..))" />  
        <aop:advisor advice-ref="txAdvice"  
            pointcut-ref="interceptorPointCuts" />          
    </aop:config>
</beans>


相關文章