1、異常的一些基本知識
2、spring事務以及配置
@transactional(rollbackfor=myexception.class,norollbackfor=otherexception.class)
public
void
updateuser(user user)
b、配置方式。 定義時宣告類的全限定名
id="txadvice"
transaction-manager="transactionmanager">
name="*"
rollback-for="com.tz.exception.myexception"
no-rollback-for="com.tz.exception.otherexception"/>
tx:attributes>
tx:advice>
注:若rollbackfor和norollbackfor配置的類相同,則出現對應異常會進行回滾
c、若需要自行捕獲異常進行處理,則使用 transactionaspectsupport.currenttransactionstatus().setrollbackonly() 語句進行手動回滾。
@transactional(rollbackfor=myexception.class,norollbackfor=runtimeexception.class)
public
void
updateuser(user user)catch(myexception e)
}
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...