Spring事務管理的三種方式

一 、第一種:全註解聲明式事務 
Xml代碼  
<?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:p="http://www.springframework.org/schema/p"  
       xmlns:tx="http://www.springframework.org/schema/tx"  
       xmlns:aop="http://www.springframework.org/schema/aop"  
       xmlns:context="http://www.springframework.org/schema/context"  
       xsi:schemaLocation="http://www.springframework.org/schema/beans  
       http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  
       http://www.springframework.org/schema/tx  
       http://www.springframework.org/schema/tx/spring-tx-3.0.xsd  
       http://www.springframework.org/schema/aop  
       http://www.springframework.org/schema/aop/spring-aop-3.0.xsd  
       http://www.springframework.org/schema/context  
       http://www.springframework.org/schema/context/spring-context-2.5.xsd"  
       default-init-method="init">      
       
    <!-- 引入jdbc配置文件 -->  
    <context:property-placeholder location="classpath:jdbc.properties" />  
      
    <!--建立jdbc數據源 -->  
    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">  
        <property name="driverClassName" value="${driver}" />  
        <property name="url" value="${url}" />  
        <property name="username" value="${username}" />  
        <property name="password" value="${password}" />  
    </bean>  
   
    <!-- 建立SqlSessionFactory,同時指定數據源 -->  
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">  
        <property name="dataSource" ref="dataSource" />  
        <!-- 配置sql映射文件所在位置  注意:默認與mapper類位置相同   -->  
        <property name="mapperLocations" value="classpath:sqlmap/*.xml" />  
    </bean>  
   
    <!-- 配置事務管理器:第一種 全註解聲明式事務  -->  
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">  
        <property name="dataSource" ref="dataSource" />  
    </bean>  
    <tx:annotation-driven transaction-manager="transactionManager" />  
    <!-- 第一種 結束位置 -->  
    <!-- Mapper接口所在包名,Spring會自動查找其下的Mapper -->  
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">  
        <property name="basePackage" value="com.xieke.test.mapper" />  
        <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />    
        <!-- 默認狀況下會自動注入id=sqlSessionFactory的bean,也能夠按上述方式指定sqlSessionFactory -->    
    </bean>  
      
</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:p="http://www.springframework.org/schema/p"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
       http://www.springframework.org/schema/tx
       http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
       http://www.springframework.org/schema/aop
       http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context-2.5.xsd"
       default-init-method="init">    
     
    <!-- 引入jdbc配置文件 -->
    <context:property-placeholder location="classpath:jdbc.properties" />
    
    <!--建立jdbc數據源 -->
    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
        <property name="driverClassName" value="${driver}" />
        <property name="url" value="${url}" />
        <property name="username" value="${username}" />
        <property name="password" value="${password}" />
    </bean>
 
    <!-- 建立SqlSessionFactory,同時指定數據源 -->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <!-- 配置sql映射文件所在位置  注意:默認與mapper類位置相同   -->
        <property name="mapperLocations" value="classpath:sqlmap/*.xml" />
    </bean>
 
    <!-- 配置事務管理器:第一種 全註解聲明式事務  -->
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource" />
    </bean>
    <tx:annotation-driven transaction-manager="transactionManager" />
    <!-- 第一種 結束位置 -->
    <!-- Mapper接口所在包名,Spring會自動查找其下的Mapper -->
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <property name="basePackage" value="com.xieke.test.mapper" />
        <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />  
        <!-- 默認狀況下會自動注入id=sqlSessionFactory的bean,也能夠按上述方式指定sqlSessionFactory -->  
    </bean>
    
</beans>
   使用時:在須要事務控制的類上加上@Transactional註解就能夠了.
   2、第二種:使用tx標籤配置的攔截器聲明式事務
Xml代碼  
<?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:p="http://www.springframework.org/schema/p"    
       xmlns:tx="http://www.springframework.org/schema/tx"    
       xmlns:aop="http://www.springframework.org/schema/aop"    
       xmlns:context="http://www.springframework.org/schema/context"    
       xsi:schemaLocation="http://www.springframework.org/schema/beans    
       http://www.springframework.org/schema/beans/spring-beans-3.0.xsd    
       http://www.springframework.org/schema/tx    
       http://www.springframework.org/schema/tx/spring-tx-3.0.xsd    
       http://www.springframework.org/schema/aop    
       http://www.springframework.org/schema/aop/spring-aop-3.0.xsd    
       http://www.springframework.org/schema/context    
       http://www.springframework.org/schema/context/spring-context-2.5.xsd"    
       default-init-method="init">        
         
    <!-- 引入jdbc配置文件 -->    
    <context:property-placeholder location="classpath:jdbc.properties" />    
        
    <!--建立jdbc數據源 -->    
    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">    
        <property name="driverClassName" value="${driver}" />    
        <property name="url" value="${url}" />    
        <property name="username" value="${username}" />    
        <property name="password" value="${password}" />    
    </bean>    
     
    <!-- 建立SqlSessionFactory,同時指定數據源 -->    
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">    
        <property name="dataSource" ref="dataSource" />    
        <!-- 配置sql映射文件所在位置  注意:默認與mapper類位置相同   -->    
        <property name="mapperLocations" value="classpath:sqlmap/*.xml" />    
    </bean>    
        
    <!-- 配置事務管理器:第二種 使用tx標籤配置的攔截器聲明式事務  -->    
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">    
        <property name="dataSource" ref="dataSource" />    
    </bean>    
    <!-- 配置事務的傳播特性  -->    
    <tx:advice id="txAdvice" transaction-manager="transactionManager">    
        <tx:attributes>    
            <tx:method name="add*" propagation="NESTED" />    
            <tx:method name="del*" propagation="NESTED" />    
            <tx:method name="*" read-only="true" />    
        </tx:attributes>    
    </tx:advice>    
    <!-- 配置事務的切入點  -->    
    <aop:config>    
        <aop:pointcut id="targetMethod" expression="execution(* com.xieke.test.service.impl.*.*(..))" />    
        <aop:advisor advice-ref="txAdvice" pointcut-ref="targetMethod" />    
    </aop:config>    
    <!-- 第二種 結束結束位置 -->    
     
    <!-- Mapper接口所在包名,Spring會自動查找其下的Mapper -->    
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">    
        <property name="basePackage" value="com.xieke.test.mapper" />    
        <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />      
        <!-- 默認狀況下會自動注入id=sqlSessionFactory的bean,也能夠按上述方式指定sqlSessionFactory -->      
    </bean>    
        
</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:p="http://www.springframework.org/schema/p"  
       xmlns:tx="http://www.springframework.org/schema/tx"  
       xmlns:aop="http://www.springframework.org/schema/aop"  
       xmlns:context="http://www.springframework.org/schema/context"  
       xsi:schemaLocation="http://www.springframework.org/schema/beans  
       http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  
       http://www.springframework.org/schema/tx  
       http://www.springframework.org/schema/tx/spring-tx-3.0.xsd  
       http://www.springframework.org/schema/aop  
       http://www.springframework.org/schema/aop/spring-aop-3.0.xsd  
       http://www.springframework.org/schema/context  
       http://www.springframework.org/schema/context/spring-context-2.5.xsd"  
       default-init-method="init">      
       
    <!-- 引入jdbc配置文件 -->  
    <context:property-placeholder location="classpath:jdbc.properties" />  
      
    <!--建立jdbc數據源 -->  
    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">  
        <property name="driverClassName" value="${driver}" />  
        <property name="url" value="${url}" />  
        <property name="username" value="${username}" />  
        <property name="password" value="${password}" />  
    </bean>  
   
    <!-- 建立SqlSessionFactory,同時指定數據源 -->  
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">  
        <property name="dataSource" ref="dataSource" />  
        <!-- 配置sql映射文件所在位置  注意:默認與mapper類位置相同   -->  
        <property name="mapperLocations" value="classpath:sqlmap/*.xml" />  
    </bean>  
      
    <!-- 配置事務管理器:第二種 使用tx標籤配置的攔截器聲明式事務  -->  
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">  
        <property name="dataSource" ref="dataSource" />  
    </bean>  
    <!-- 配置事務的傳播特性  -->  
    <tx:advice id="txAdvice" transaction-manager="transactionManager">  
        <tx:attributes>  
            <tx:method name="add*" propagation="NESTED" />  
            <tx:method name="del*" propagation="NESTED" />  
            <tx:method name="*" read-only="true" />  
        </tx:attributes>  
    </tx:advice>  
    <!-- 配置事務的切入點  -->  
    <aop:config>  
        <aop:pointcut id="targetMethod" expression="execution(* com.xieke.test.service.impl.*.*(..))" />  
        <aop:advisor advice-ref="txAdvice" pointcut-ref="targetMethod" />  
    </aop:config>  
    <!-- 第二種 結束結束位置 -->  
   
    <!-- Mapper接口所在包名,Spring會自動查找其下的Mapper -->  
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">  
        <property name="basePackage" value="com.xieke.test.mapper" />  
        <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />    
        <!-- 默認狀況下會自動注入id=sqlSessionFactory的bean,也能夠按上述方式指定sqlSessionFactory -->    
    </bean>  
      
</beans>  
    3、 第三種:使用攔截器聲明式事務 
Xml代碼  
<?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:p="http://www.springframework.org/schema/p"  
       xmlns:tx="http://www.springframework.org/schema/tx"  
       xmlns:aop="http://www.springframework.org/schema/aop"  
       xmlns:context="http://www.springframework.org/schema/context"  
       xsi:schemaLocation="http://www.springframework.org/schema/beans  
       http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  
       http://www.springframework.org/schema/tx  
       http://www.springframework.org/schema/tx/spring-tx-3.0.xsd  
       http://www.springframework.org/schema/aop  
       http://www.springframework.org/schema/aop/spring-aop-3.0.xsd  
       http://www.springframework.org/schema/context  
       http://www.springframework.org/schema/context/spring-context-2.5.xsd"  
       default-init-method="init">      
       
    <!-- 引入jdbc配置文件 -->  
    <context:property-placeholder location="classpath:jdbc.properties" />  
      
    <!--建立jdbc數據源 -->  
    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">  
        <property name="driverClassName" value="${driver}" />  
        <property name="url" value="${url}" />  
        <property name="username" value="${username}" />  
        <property name="password" value="${password}" />  
    </bean>  
   
    <!-- 建立SqlSessionFactory,同時指定數據源 -->  
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">  
        <property name="dataSource" ref="dataSource" />  
        <!-- 配置sql映射文件所在位置  注意:默認與mapper類位置相同   -->  
        <property name="mapperLocations" value="classpath:sqlmap/*.xml" />  
    </bean>  
      
    <!-- 配置事務管理器:第三種 使用攔截器聲明式事務  -->      
    <bean id="transactionManager"    
        class="org.springframework.jdbc.datasource.DataSourceTransactionManager">    
        <property name="dataSource" ref="dataSource" />   
    </bean>     
    <bean id="transactionInterceptor"      
        class="org.springframework.transaction.interceptor.TransactionInterceptor">      
        <property name="transactionManager" ref="transactionManager" />  
        <!-- 配置事務屬性   -->  
        <property name="transactionAttributes">      
            <props>  
                <!-- PROPAGATION_REQUIRED:支持當前事務,若是當前沒有事務,則新建一個事務    -->  
                <prop key="add*">PROPAGATION_REQUIRED</prop>  
                <prop key="del*">PROPAGATION_REQUIRED</prop>      
            </props>      
        </property>      
    </bean>    
    <bean class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">      
        <property name="beanNames">      
            <list>      
                <value>*ServiceImpl</value>    
            </list>      
        </property>      
        <property name="interceptorNames">      
            <list>      
                <value>transactionInterceptor</value>      
            </list>      
        </property>      
    </bean>      
    <!-- 第三種 結束位置 -->  
   
    <!-- Mapper接口所在包名,Spring會自動查找其下的Mapper -->  
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">  
        <property name="basePackage" value="com.xieke.test.mapper" />  
        <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />    
        <!-- 默認狀況下會自動注入id=sqlSessionFactory的bean,也能夠按上述方式指定sqlSessionFactory -->    
    </bean>  
      
</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:p="http://www.springframework.org/schema/p"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
       http://www.springframework.org/schema/tx
       http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
       http://www.springframework.org/schema/aop
       http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context-2.5.xsd"
       default-init-method="init">    
     
    <!-- 引入jdbc配置文件 -->
    <context:property-placeholder location="classpath:jdbc.properties" />
    
    <!--建立jdbc數據源 -->
    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
        <property name="driverClassName" value="${driver}" />
        <property name="url" value="${url}" />
        <property name="username" value="${username}" />
        <property name="password" value="${password}" />
    </bean>
 
    <!-- 建立SqlSessionFactory,同時指定數據源 -->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <!-- 配置sql映射文件所在位置  注意:默認與mapper類位置相同   -->
        <property name="mapperLocations" value="classpath:sqlmap/*.xml" />
    </bean>
    
    <!-- 配置事務管理器:第三種 使用攔截器聲明式事務  -->    
    <bean id="transactionManager"  
        class="org.springframework.jdbc.datasource.DataSourceTransactionManager">  
        <property name="dataSource" ref="dataSource" /> 
    </bean>   
    <bean id="transactionInterceptor"    
        class="org.springframework.transaction.interceptor.TransactionInterceptor">    
        <property name="transactionManager" ref="transactionManager" />
        <!-- 配置事務屬性   -->
        <property name="transactionAttributes">    
            <props>
            	<!-- PROPAGATION_REQUIRED:支持當前事務,若是當前沒有事務,則新建一個事務    -->
                <prop key="add*">PROPAGATION_REQUIRED</prop>
                <prop key="del*">PROPAGATION_REQUIRED</prop>    
            </props>    
        </property>    
    </bean>  
    <bean class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">    
        <property name="beanNames">    
            <list>    
                <value>*ServiceImpl</value>  
            </list>    
        </property>    
        <property name="interceptorNames">    
            <list>    
                <value>transactionInterceptor</value>    
            </list>    
        </property>    
    </bean>    
    <!-- 第三種 結束位置 -->
 
    <!-- Mapper接口所在包名,Spring會自動查找其下的Mapper -->
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <property name="basePackage" value="com.xieke.test.mapper" />
        <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />  
        <!-- 默認狀況下會自動注入id=sqlSessionFactory的bean,也能夠按上述方式指定sqlSessionFactory -->  
    </bean>
    
</beans>
 
Spring事務的傳播屬性:
PROPAGATION_REQUIRED -- 支持當前事務,若是當前沒有事務,就新建一個事務。這是最多見的選擇。 
PROPAGATION_SUPPORTS -- 支持當前事務,若是當前沒有事務,就以非事務方式執行。 
PROPAGATION_MANDATORY -- 支持當前事務,若是當前沒有事務,就拋出異常。 
PROPAGATION_REQUIRES_NEW -- 新建事務,若是當前存在事務,把當前事務掛起。 
PROPAGATION_NOT_SUPPORTED -- 以非事務方式執行操做,若是當前存在事務,就把當前事務掛起。 
PROPAGATION_NEVER -- 以非事務方式執行,若是當前存在事務,則拋出異常。 
PROPAGATION_NESTED -- 若是當前存在事務,則在嵌套事務內執行。若是當前沒有事務,則進行與PROPAGATION_REQUIRED相似的操做。 



【下載地址】   java後臺框架源碼 springmvc mybatis oracle mysql maven HTML5 bootstrap 全新技術java

相關文章
相關標籤/搜索