1. 程式人生 > 其它 >spring5 入門(八)宣告事務

spring5 入門(八)宣告事務

事務的acid原則:

  • 原子性 :要麼都成功,要麼都失敗

  • 一致性 :一旦所有事務動作完成,事務就要被提交。資料和資源處於一種滿足業務規則的一致性狀態中

  • 隔離性 :可能多個事務會同時處理相同的資料,因此每個事務都應該與其他事務隔離開來,防止資料損壞

  • 永續性:事務一旦提交,無論系統發生什麼問題,結果都不會被影響。

Spring在事務管理API之上定義了一個抽象層,使得開發人員不必瞭解底層的事務管理API就可以使用Spring的事務管理機制,包含以下兩種:

  • 宣告式事務
  • 程式設計式事務

程式設計式事務管理

將事務管理程式碼嵌到業務方法中來控制事務的提交和回滾

缺點:必須在每個事務操作業務邏輯中包含額外的事務管理程式碼

宣告式事務管理

一般情況下比程式設計式事務好用。

將事務管理程式碼從業務方法中分離出來,以宣告的方式來實現事務管理。

將事務管理作為橫切關注點,通過aop方法模組化。Spring中通過Spring AOP框架支援宣告式事務管理。

使用Spring管理事務,注意標頭檔案的約束匯入 : tx

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

註冊事務類

        <bean id="DataSourceTransactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
                <property name="dataSource" ref="resource"/>
        </bean>

配置事務的通知如下:

<!--配置事務通知-->
<tx:advice id="txAdvice" transaction-manager="DataSourceTransactionManager">
    <tx:attributes>
        <!--propagation傳播屬性,預設是REQUIRED-->
        <tx:method name="add" propagation="REQUIRED"/>
        <tx:method name="delete" propagation="REQUIRED"/>
        <tx:method name="update" propagation="REQUIRED"/>
        <tx:method name="search" propagation="REQUIRED"/>
        <tx:method name="get" read-only="true"/>
        <tx:method name="*" propagation="REQUIRED"/>
    </tx:attributes>
</tx:advice>

上面propagation,表示事務傳播行為,就是多個事務方法相互呼叫時,事務如何在這些方法間傳播。spring支援7種事務傳播行為:

  • propagation_requierd:如果當前沒有事務,就新建一個事務,如果已存在一個事務中,加入到這個事務中,這是最常見的選擇。
  • propagation_supports:支援當前事務,如果沒有當前事務,就以非事務方法執行。
  • propagation_mandatory:使用當前事務,如果沒有當前事務,就丟擲異常。
  • propagation_required_new:新建事務,如果當前存在事務,把當前事務掛起。
  • propagation_not_supported:以非事務方式執行操作,如果當前存在事務,就把當前事務掛起。
  • propagation_never:以非事務方式執行操作,如果當前事務存在則丟擲異常。
  • propagation_nested:如果當前存在事務,則在巢狀事務內執行。如果當前沒有事務,則執行與propagation_required類似的操作

Spring 預設的事務傳播行為是 PROPAGATION_REQUIRED,它適合於絕大多數的情況

將事務通知插入具體的程式碼中:

        <aop:config>
                <aop:pointcut id="right" expression="execution(* com.hys.dao.*.*(..))"/>
                <aop:advisor advice-ref="txAdvice" pointcut-ref="right"/>
        </aop:config>

如下程式碼表示上面要插入的地方,這時候當執行select方法時,呼叫其他兩方法,需要保證呼叫的方法都執行成功才會提交,要是有一個失敗就會rollback~

public class userMapperIml extends SqlSessionDaoSupport implements userMapper{
    @Override
    public List<user> select() {
        List<user> select = getSqlSession().getMapper(userMapper.class).select();
        addUser();
        delUser();
        return select;
    }

    @Override
    public void addUser(user user) {
        getSqlSession().getMapper(userMapper.class).addUser(user);
    }

    @Override
    public void delUser(int id) {
        getSqlSession().getMapper(userMapper.class).delUser(id);
    }
}

在事務的傳播中,假設 ServiveX#methodX() 都工作在事務環境下(即都被 Spring 事務增強了),

假設程式中存在如下的呼叫鏈:Service1#method1()->Service2#method2()->Service3#method3(),

那麼這3 個方法通過 Spring 的事務傳播機制都工作在同一個事務中。

上面就是這個例子!