方式一:使用配置
這種是,自動掃瞄該包的的所有制定方法,有異常丟擲,就回滾
若是沒有發出異常,但不符合要求,可以手動製造異常,使其觸發配置的事務回滾
<
bean
id="transactionmanager"
class
="org.springframework.jdbc.datasource.datasourcetransactionmanager"
>
<
property
name
="datasource"
ref="datasource"
/>
bean
>
<
tx:advice
id="transactioninterceptor"
transaction-manager
="transactionmanager"
>
<
tx:attributes
>
<
tx:method
name
="add*"
propagation
="required"
/>
<
tx:method
name
="del*"
propagation
="required"
/>
<
tx:method
name
="update*"
propagation
="required"
/>
<
tx:method
name
="query*"
read-only
="true"
/>
<
tx:method
name
="select*"
read-only
="true"
/>
<
tx:method
name
="find*"
read-only
="true"
/>
<
tx:method
name
="get*"
read-only
="true"
/>
tx:attributes
>
tx:advice
>
方式二:
使用@transactional 註解,同方法一,都是有異常才會回滾
方式三:使用transactionaspectsupport.currenttransactionstatus().setrollbackonly(); ,手動調起事務回滾(推薦)
spring事務回滾
註解方式宣告事務,該事務宣告的範圍是service中的方法,而一般的事務宣告時不是宣告在 業務邏輯方法上的,而是宣告在單一的資料庫操作方法上的 transactional publicclassuserserviceimplimplementsuserservice,newint thrownewe...
spring事務回滾
1 核心 只有丟擲 runtimeexception 才會回滾,其他情況都不會 2 基本 1.spring事務配置 advice ref txadvice 2.service層 public class personservice 3.sqlmap values name age version s...
spring事務回滾
被攔截的方法需顯式丟擲異常,並不能經任何處理,這樣aop 才能捕獲到方法的異常,才能進行回滾,預設情況下aop只捕獲runtimeexcetpion的異常,但可以通過 配置來捕獲特定的異常並回滾換句話說在service的方法中不使用try catch 或者在catch中最後加上throw new r...