三 Spring 宣告式事務

NemophilistPro發表於2020-11-19

配置宣告式事務

配置步驟
匯入tx和aop名稱空間

xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd">

定義事務管理器Bean,併為其注入資料來源Bean
通過tx:advice配置事務增強,繫結事務管理器並針對不同方法定義事務規則
配置切面,將事務增強與方法切入點組合

  <tx:advice id="txAdvice">
        <tx:attributes>
            <tx:method name="find*" propagation="SUPPORTS" />
            <tx:method name="add*" propagation="REQUIRED" />
            <tx:method name="del*" propagation="REQUIRED" />
            <tx:method name="update*" propagation="REQUIRED" />
            <tx:method name="*" propagation="REQUIRED" />
        </tx:attributes>
    </tx:advice>
    <!-- 定義切面 -->
    <aop:config>
        <aop:pointcut id="serviceMethod"
            expression="execution(* cn.smbms.service..*.*(..))" />
        <aop:advisor advice-ref="txAdvice" pointcut-ref="serviceMethod" />
    </aop:config>
propagation:事務傳播機制
REQUIRED(預設值)
REQUIRES_NEW 、MANDATORY、NESTED
SUPPORTS
NOT_SUPPORTED、NEVER

isolation:事務隔離等級
DEFAULT(預設值)
READ_COMMITTED
READ_UNCOMMITTED
REPEATABLE_READ
SERIALIZABLE

timeout:事務超時時間,允許事務執行的最長時間,以秒為單位。預設值為-1,表示不超時
read-only:事務是否為只讀,預設值為false
rollback-for:設定能夠觸發回滾的異常型別
Spring預設只在丟擲runtime exception時才標識事務回滾
可以通過全限定類名指定需要回滾事務的異常,多個類名用逗號隔開
no-rollback-for:設定不觸發回滾的異常型別
Spring預設checked Exception不會觸發事務回滾
可以通過全限定類名指定不需回滾事務的異常,多個類名用英文逗號隔開

在這裡插入圖片描述
在這裡插入圖片描述

註解配置事務

在Spring配置檔案中配置事務管理類,並新增對註解配置的事務的支援

<bean id="txManager"  class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
    <property name="dataSource" ref="dataSource" />
</bean>
<tx:annotation-driven transaction-manager="txManager"/>
@Transactional
@Service("userService")
public class UserServiceImpl implements UserService {
 	……
	@Transactional(propagation = Propagation.SUPPORTS)
    public List<User> findUsersWithConditions(User user) {
        // 省略實現程式碼
    }}

相關文章