(1)核心
只有丟擲
runtimeexception
才會回滾,其他情況都不會
(2)基本**
1.spring事務配置
advice-ref="txadvice" />
2.service層
public class personservice
}
3.sqlmap
<?xml version="1.0" encoding="utf-8" ?>
values(#name#,#age#,#version#)
select last_insert_id() as id from person limit 1
(3)不拋異常dao
public class persondaoimpl extends sqlmapclientdaosupport implements persondao
) public void insertbatch(final listlist)
return executor.executebatch();
}});
}}
測試:
public class personservicetest
@test
public void testinsertbatch()
listpersons = new arraylist();
for (int i=-5; i<10; i++)
personservice.insertbatch(persons);
}}
結果:成功插入
(4)拋checkedexception異常dao
public class persondaoimpl extends sqlmapclientdaosupport implements persondao
) public void insertbatch(final listlist) catch (filenotfoundexception e)
}executor.insert("person.insertperson", p);
}return executor.executebatch();
}});
}}
測試:
public class personservicetest
@test
public void testinsertbatch()
listpersons = new arraylist();
for (int i=-5; i<10; i++)
personservice.insertbatch(persons);
}}
結果仍然成功插入
(5)拋runtimeexception異常dao
public class persondaoimpl extends sqlmapclientdaosupport implements persondao
) public void insertbatch(final listlist) catch (filenotfoundexception e)
}executor.insert("person.insertperson", p);
}return executor.executebatch();
}});
}}
丟擲runtimeexception,事務回滾,一條資料也沒有插入
(6)總結
如果在service中遇到異常需要回滾,則一定要
手動丟擲runtimeexception
spring事務回滾
註解方式宣告事務,該事務宣告的範圍是service中的方法,而一般的事務宣告時不是宣告在 業務邏輯方法上的,而是宣告在單一的資料庫操作方法上的 transactional publicclassuserserviceimplimplementsuserservice,newint thrownewe...
spring事務回滾
被攔截的方法需顯式丟擲異常,並不能經任何處理,這樣aop 才能捕獲到方法的異常,才能進行回滾,預設情況下aop只捕獲runtimeexcetpion的異常,但可以通過 配置來捕獲特定的異常並回滾換句話說在service的方法中不使用try catch 或者在catch中最後加上throw new r...
Spring 事務回滾
方式一 使用配置 這種是,自動掃瞄該包的的所有制定方法,有異常丟擲,就回滾 若是沒有發出異常,但不符合要求,可以手動製造異常,使其觸發配置的事務回滾 bean id transactionmanager class org.springframework.jdbc.datasource.dataso...