Springboot中事務(wù)的使用: 1、啟動類加上@EnableTransactionManagement注解,開啟事務(wù)支持(其實默認(rèn)是開啟的)。 2、在使用事務(wù)的public(只有public支持事務(wù))方法(或者類-相當(dāng)于該類的所有public方法都使用)加上@Transactional注解。 在實際使用中一般是在service中使用@Transactional,那么對于controller->service流程中: 如果controller未開啟事務(wù),service中開始了事務(wù),service成功執(zhí)行,controller在之后的運行中出現(xiàn)異常(錯誤),不會自動回滾。 也就是說,只有在開啟事務(wù)的方法中出現(xiàn)異常(默認(rèn)只有非檢測性異常才生效-RuntimeException )(錯誤-Error)才會自動回滾。 如果想要對拋出的任何異常都進行自動回滾(而不是只針對RuntimeException),只需要在使用@Transactional(rollbackFor = Exception.class)即可。 開啟事務(wù)的方法中事務(wù)回滾的情況: ①未發(fā)現(xiàn)的異常,程序運行過程中自動拋出RuntimeException或者其子類,程序終止,自動回滾。 ②使用TransactionAspectSupport.currentTransactionStatus().setRollbackOnly();進行手動回滾。 ③注意:如果在try-catch語句中對可能出現(xiàn)的異常(RuntimeException)進行了處理,沒有再手動throw異常,spring認(rèn)為該方法成功執(zhí)行,不會進行回滾,此時需要調(diào)用②中方法進行手動回滾 (java 框架項目 www.fhadmin.cn) 另外,如果try-catch語句在finally中進行了return操作,那么catch中手動拋出的異常也會被覆蓋,同樣不會自動回滾。 //不會自動回滾 try{ throw new RuntimeException(); }catch(RuntimeException e){ e.printStackTrace(); }finally{ } //會自動回滾 try{ throw new RuntimeException(); }catch(RuntimeException e){ e.printStackTrace(); throw new RuntimeException(); }finally{ } |
|