接手新專案一言難盡,別的不說單單就一個 @Transactional
註解用的一塌糊塗,五花八門的用法,很大部分還失效無法回滾。
有意識的在涉及事務相關方法上加 @Transactional
註解,是個好習慣。不過,很多同學只是下意識地新增這個註解,一旦功能正常執行,很少有人會深入驗證異常情況下事務是否能正確回滾。@Transactional 註解雖然用起來簡單,但這貨總是能在一些你意想不到的情況下失效,防不勝防!
我把這些事務問題歸結成了三類:事務不必要
、事務不生效
、事務不回滾
,接下用一些demo演示下各自的場景。
1. 事務不必要
1.1 無需事務的業務
在沒有事務操作的業務方法上使用 @Transactional 註解,比如:用在僅有查詢或者一些 HTTP 請求的方法,雖然加上影響不大,但從編碼規範的角度來看還是不夠嚴謹,建議去掉。
@Transactional public String testQuery() { standardBak2Service.getById(1L); return "testB"; }
1.2 事務範圍過大
有些同學為了省事直接將 @Transactional 註解加在了類上或者抽象類上,這樣做導致的問題就是類內的方法或抽象類的實現類中所有方法全部都被事務管理。增加了不必要的效能開銷或複雜性,建議按需使用,只在有事務邏輯的方法上加@Transactional。
@Transactional public abstract class BaseService { } @Slf4j @Service public class TestMergeService extends BaseService{ private final TestAService testAService; public String testMerge() { testAService.testA(); return "ok"; } }
如果在類中的方法上新增 @Transactional 註解,它將覆蓋類級別的事務配置。例如,類級別上配置了只讀事務,方法級別上的 @Transactional 註解也會覆蓋該配置,從而啟用讀寫事務。
@Transactional(readOnly = true) public class TestMergeService { private final TestBService testBService; private final TestAService testAService; @Transactional public String testMerge() { testAService.testA(); testBService.testB(); return "ok"; } }
2. 事務不生效
2.1 方法許可權問題
不要把 @Transactional註解加在 private 級別的方法上!
我們知道 @Transactional 註解依賴於Spring AOP切面來增強事務行為,這個 AOP 是透過代理來實現的,而 private 方法恰恰不能被代理的,所以 AOP 對 private 方法的增強是無效的,@Transactional也就不會生效。
@Transactional private String testMerge() { testAService.testA(); testBService.testB(); return "ok"; }
那如果我在 testMerge() 方法內呼叫 private 的方法事務會生效嗎?
答案:事務會生效
@Transactional public String testMerge() throws Exception { ccc(); return "ok"; } private void ccc() { testAService.testA(); testBService.testB(); }
2.2 被用 final 、static 修飾方法
和上邊的原因類似,被用 final
、static
修飾的方法上加 @Transactional 也不會生效。
- static 靜態方法屬於類本身的而非例項,因此代理機制是無法對靜態方法進行代理或攔截的
- final 修飾的方法不能被子類重寫,事務相關的邏輯無法插入到 final 方法中,代理機制無法對 final 方法進行攔截或增強。
這些都是java基礎概念了,使用時要注意。
@Transactional public static void b() { } @Transactional public final void b() { }
2.3 同類內部方法呼叫問題
注意了,這種情況經常發生啊!
同類內部方法間的呼叫是 @Transactional 註解失效的重災區,網上你總能看到方法內部呼叫另一個同類的方法時,這種呼叫是不會經過代理的,因此事務管理不會生效。但這說法比較片面,要分具體情況。
比如:testMerge() 方法開啟事務,呼叫同類非事務的方法 a() 和 b() ,此時 b() 拋異常,根據事務的傳播性 a()、b() 事務均生效。
@Transactional public String testMerge() { a(); b(); return "ok"; } public void a() { standardBakService.save(testAService.buildEntity()); } public void b() { standardBak2Service.save(testBService.buildEntity2()); throw new RuntimeException("b error"); }
如果 testMerge() 方法未開啟事務,並且在同類中呼叫了非事務方法 a() 和事務方法 b(),當 b() 丟擲異常時,a() 和 b() 的事務都不會生效。因為這種呼叫直接透過 this
物件進行,未經過代理,因此事務管理無法生效。這經常出問題的!
public String testMerge() { a(); b(); return "ok"; } public void a() { standardBakService.save(testAService.buildEntity()); } @Transactional public void b() { standardBak2Service.save(testBService.buildEntity2()); throw new RuntimeException("b error"); }
2.3.1 獨立的 Service 類
要想 b() 方法的事務生效也容易,最簡單的方法將它剝離放在獨立的Service類注入使用,交給spring管理就行了。不過,這種方式會建立很多類。
@Slf4j @Service public class TestBService { @Transactional public void b() { standardBak2Service.save(testBService.buildEntity2()); throw new RuntimeException("b error"); } }
2.3.2 自注入方式
或者透過自己注入自己的方式解決,儘管解決了問題,邏輯看起來很奇怪,它破壞了依賴注入的原則,雖然 spring 支援我們這樣用,要注意下迴圈依賴的問題。
@Slf4j @Service public class TestMergeService { @Autowired private TestMergeService testMergeService; public String testMerge() { a(); testMergeService.b(); return "ok"; } public void a() { standardBakService.save(testAService.buildEntity()); } @Transactional public void b() { standardBak2Service.save(testBService.buildEntity2()); throw new RuntimeException("b error"); } }
2.3.3 手動獲取代理物件
b() 方法它不是沒被代理嘛,那我們手動獲取代理物件呼叫 b() 方法也可以。透過 AopContext.currentProxy()
方法返回當前的代理物件例項,這樣呼叫代理的方法時,就會經過 AOP 的切面,@Transactional註解就會生效了。
@Slf4j @Service public class TestMergeService { public String testMerge() { a(); ((TestMergeService) AopContext.currentProxy()).b(); return "ok"; } public void a() { standardBakService.save(testAService.buildEntity()); } @Transactional public void b() { standardBak2Service.save(testBService.buildEntity2()); throw new RuntimeException("b error"); } }
2.4. Bean 未被 spring 管理
上邊我們知道 @Transactional 註解透過 AOP 來管理事務,而 AOP 依賴於代理機制。因此,Bean 必須由Spring管理例項! 要確保為類加上如 @Controller
、@Service
或 @Component
註解,讓其被Spring所管理,這很容易忽視。
@Service public class TestBService { @Transactional public String testB() { standardBak2Service.save(entity2); return "testB"; } }
2.5 非同步執行緒呼叫
如果我們在 testMerge() 方法中使用非同步執行緒執行事務操作,通常也是無法成功回滾的,來個具體的例子。
testMerge() 方法在事務中呼叫了 testA(),testA() 方法中開啟了事務。接著,在 testMerge() 方法中,我們透過一個新執行緒呼叫了 testB(),testB() 中也開啟了事務,並且在 testB() 中丟擲了異常。
此時的回滾情況是怎樣的呢?
@Transactional public String testMerge() { testAService.testA(); new Thread(() -> { try { testBService.testB(); } catch (Exception e) { // e.printStackTrace(); throw new RuntimeException(); } }).start(); return "ok"; } @Transactional public String testB() { DeepzeroStandardBak2 entity2 = buildEntity2(); dataImportJob2Service.save(entity2); throw new RuntimeException("test2"); } @Transactional public String testA() { DeepzeroStandardBak entity = buildEntity(); standardBakService.save(entity); return "ok"; }
答案是:testA() 不回滾、 testB() 回滾。
testA() 無法回滾是因為沒有捕獲到新執行緒中 testB()丟擲的異常;testB()方法可以回滾,是因為事務管理器只對當前執行緒中的事務有效,因此在新執行緒中執行的事務會回滾。
由於在多執行緒環境下,Spring 的事務管理器不會跨執行緒傳播事務,事務的狀態(如事務是否已開啟)是儲存線上程本地的 ThreadLocal
來儲存和管理事務上下文資訊。這意味著每個執行緒都有一個獨立的事務上下文,事務資訊在不同執行緒之間不會共享。
2.6 不支援事務的引擎
不支援事務的資料庫引擎不在此次 Review
範圍內,只做瞭解就好。我們通常使用的關係型資料庫,如 MySQL,預設使用支援事務的 InnoDB
引擎,而非事務的 MyISAM
引擎則使用較少。
以前開啟啟用 MyISAM 引擎是為了提高查詢效率。不過,現在非關係型資料庫如 Redis
、MongoDB
和 Elasticsearch
等中介軟體提供了更高價效比的解決方案。
3. 事務不回滾
3.1 用錯傳播屬性
@Transactional
註解有個關鍵的引數propagation
,它控制著事務的傳播行為,有時事務傳播引數配置錯誤也會導致事務的不回滾。
propagation 支援 7 種事務傳播特性:
REQUIRED
:預設的傳播行為,如果當前沒有事務,則建立一個新事務;如果存在事務,則加入當前事務。MANDATORY
:支援當前事務,如果不存在則丟擲異常NEVER
:非事務性執行,如果存在事務,則丟擲異常REQUIRES_NEW
:無論當前是否存在事務,都會建立一個新事務,原有事務被掛起。NESTED
:巢狀事務,被呼叫方法在一個巢狀的事務中執行,這個事務依賴於當前的事務。SUPPORTS
:如果當前存在事務,則加入;如果沒有,就以非事務方式執行。NOT_SUPPORTED
:以非事務方式執行,如果當前存在事務,將其掛起。
為了加深印象,我用案例來模擬下每種特性的使用場景。
REQUIRED
REQUIRED 是預設的事務傳播行為。如果 testMerge() 方法開啟了事務,那麼其內部呼叫的 testA() 和 testB() 方法也將加入這個事務。如果 testMerge() 沒有開啟事務,而 testA() 和 testB() 方法上使用了 @Transactional 註解,這些方法將各自建立新的事務,只控制自身的回滾。
@Component @RequiredArgsConstructor @Slf4j @Service public class TestMergeService { private final TestBService testBService; private final TestAService testAService; @Transactional public String testMerge() { testAService.testA(); testBService.testB(); return "ok"; } } @Transactional public String testA() { log.info("testA"); DeepzeroStandardBak entity = buildEntity(); standardBakService.save(entity); return "ok"; } @Transactional public String testB() { log.info("testB"); DeepzeroStandardBak2 entity2 = buildEntity2(); standardBak2Service.save(entity2); throw new RuntimeException("testB"); }
MANDATORY
MANDATORY 傳播特性簡單來說就是隻能被開啟事務的上層方法呼叫,例如 testMerge() 方法未開啟事務呼叫 testB() 方法,那麼將丟擲異常;testMerge() 開啟事務呼叫 testB() 方法,則加入當前事務。
@Component @RequiredArgsConstructor @Slf4j @Service public class TestMergeService { private final TestBService testBService; private final TestAService testAService; public String testMerge() { testAService.testA(); testBService.testB(); return "ok"; } } @Transactional public String testA() { log.info("testA"); DeepzeroStandardBak entity = buildEntity(); standardBakService.save(entity); return "ok"; } @Transactional(propagation = Propagation.MANDATORY) public String testB() { log.info("testB"); DeepzeroStandardBak2 entity2 = buildEntity2(); standardBak2Service.save(entity2); throw new RuntimeException("testB"); }
丟擲的異常資訊
org.springframework.transaction.IllegalTransactionStateException: No existing transaction found for transaction marked with propagation 'mandatory'
NEVER
NEVER 傳播特性是強制你的方法只能以非事務方式執行,如果方法存在事務操作會丟擲異常,我實在是沒想到有什麼使用場景。
@Transactional(propagation = Propagation.NEVER) public String testB() { log.info("testB"); DeepzeroStandardBak2 entity2 = buildEntity2(); standardBak2Service.save(entity2); // throw new RuntimeException("testB"); return "ok"; }
丟擲的異常資訊
org.springframework.transaction.IllegalTransactionStateException: Existing transaction found for transaction marked with propagation 'never'
REQUIRES_NEW
我們在使用 Propagation.REQUIRES_NEW 傳播特性時,不論當前事務的狀態如何,呼叫該方法都會建立一個新的事務。
例如,testMerge() 方法開始一個事務,呼叫 testB() 方法時,它會暫停 testMerge() 的事務,並啟動一個新的事務。如果 testB() 方法內部發生異常,新事務會回滾,但原先掛起的事務不會受影響。這意味著,掛起的事務不會因為新事務的回滾而受到影響,也不會因為新事務的失敗而回滾。
@Transactional public String testMerge() { testAService.testA(); testBService.testB(); return "ok"; } @Transactional public String testA() { log.info("testA"); DeepzeroStandardBak entity = buildEntity(); standardBakService.save(entity); return "ok"; } @Transactional(propagation = Propagation.REQUIRES_NEW) public String testB() { log.info("testB"); DeepzeroStandardBak2 entity2 = buildEntity2(); standardBak2Service.save(entity2); throw new RuntimeException("testB"); }
NESTED
方法的傳播行為設定為 NESTED,其內部方法會開啟一個新的巢狀事務(子事務)。在沒有外部事務的情況下 NESTED
與 REQUIRED
效果相同;存在外部事務的情況下,一旦外部事務回滾,它會建立一個巢狀事務(子事務)。
也就是說外部事務回滾時,子事務會跟著回滾;但子事務的回滾不會對外部事務和其他同級事務造成影響。
@Component @RequiredArgsConstructor @Slf4j @Service public class TestMergeService { private final TestBService testBService; private final TestAService testAService; @Transactional public String testMerge() { testAService.testA(); testBService.testB(); throw new RuntimeException("testMerge"); return "ok"; } } @Transactional public String testA() { log.info("testA"); DeepzeroStandardBak entity = buildEntity(); standardBakService.save(entity); return "ok"; } @Transactional(propagation = Propagation.NESTED) public String testB() { log.info("testB"); DeepzeroStandardBak2 entity2 = buildEntity2(); standardBak2Service.save(entity2); throw new RuntimeException("testB"); }
NOT_SUPPORTED
NOT_SUPPORTED
事務傳播特性表示該方法必須以非事務方式執行。當方法 testMerge() 開啟事務並呼叫事務方法 testA() 和 testB() 時,如果 testA() 和 testB() 的事務傳播特性為 NOT_SUPPORTED,那麼 testB() 將以非事務方式執行,並掛起當前的事務。
預設傳播特性的情況下 testB() 異常事務加入會導致 testA() 回滾,而掛起的意思是說,testB() 其內部一旦丟擲異常,不會影響 testMerge() 中其他 testA() 方法的回滾。
@Component @RequiredArgsConstructor @Slf4j @Service public class TestMergeService { private final TestBService testBService; private final TestAService testAService; @Transactional public String testMerge() { testAService.testA(); testBService.testB(); return "ok"; } } @Transactional public String testA() { log.info("testA"); DeepzeroStandardBak entity = buildEntity(); standardBakService.save(entity); return "ok"; } @Transactional(propagation = Propagation.NOT_SUPPORTED) public String testB() { log.info("testB"); DeepzeroStandardBak2 entity2 = buildEntity2(); standardBak2Service.save(entity2); throw new RuntimeException("testB"); }
SUPPORTS
如果當前方法的事務傳播特性是 SUPPORTS
,那麼只有在呼叫該方法的上層方法開啟了事務的情況下,該方法的事務才會有效。如果上層方法沒有開啟事務,那麼該方法的事務特性將無效。
例如,如果入口方法 testMerge() 沒有開啟事務,而 testMerge() 呼叫的方法 testA() 和 testB() 的事務傳播特性為 SUPPORTS,那麼由於 testMerge() 沒有事務,testA() 和 testB() 將以非事務方式執行。即使在這些方法上加上 @Transactional
註解,也不會回滾異常。
@Component @RequiredArgsConstructor @Slf4j @Service public class TestMergeService { private final TestBService testBService; private final TestAService testAService; public String testMerge() { testAService.testA(); testBService.testB(); return "ok"; } } @Transactional(propagation = Propagation.SUPPORTS) public String testA() { log.info("testA"); DeepzeroStandardBak entity = buildEntity(); standardBakService.save(entity); return "ok"; } @Transactional(propagation = Propagation.SUPPORTS) public String testB() { log.info("testB"); DeepzeroStandardBak2 entity2 = buildEntity2(); standardBak2Service.save(entity2); throw new RuntimeException("testB"); }
3.2 自己吞了異常
在整個 review 的過程中我發現導致事務不回滾的場景,多數是開發同學在業務程式碼中手動 try...catch 捕獲了異常,然後又沒丟擲異常....
比如:testMerge() 方法開啟了事務,並呼叫了非事務方法 testA() 和 testB(),同時在 testMerge() 中捕獲了異常。如果 testB() 中發生了異常並丟擲,但 testMerge() 捕獲了這個異常而沒有繼續丟擲,Spring 事務將無法捕獲到異常,從而無法進行回滾。
@RequiredArgsConstructor @Slf4j @Service public class TestMergeService { private final TestBService testBService; private final TestAService testAService; @Transactional public String testMerge() { try { testAService.testA(); testBService.testB(); } catch (Exception e) { log.error("testMerge error:{}", e); } return "ok"; } } @Service public class TestAService { public String testA() { standardBakService.save(entity); return "ok"; } } @Service public class TestBService { public String testB() { standardBakService.save(entity2); throw new RuntimeException("test2"); } }
為了確保 Spring 事務能夠正常回滾,需要我們在 catch 塊中主動重新丟擲它能夠處理的 RuntimeException 或者 Error 型別的異常。
@Transactional public String testMerge() { try { testAService.testA(); testBService.testB(); } catch (Exception e) { log.error("testMerge error:{}", e); throw new RuntimeException(e); } return "ok"; }
捕獲異常並不意味著一定不會回滾,這取決於具體情況。
例如,當 testB() 方法上也加上了 @Transactional 註解時,如果在該方法中發生異常,事務會捕獲到這個異常。由於事務傳播的特性,testB() 的事務會合併到上層方法的事務中。因此,即使在 testMerge() 中捕獲了異常而未丟擲,事務仍然可以成功回滾。
@Transactional public String testB() { DeepzeroStandardBak2 entity2 = buildEntity2(); dataImportJob2Service.save(entity2); throw new RuntimeException("test2"); // return "ok"; }
但這有個提前,必須在 testMerge() 方法上新增 @Transactional 註解以啟用事務。如果 testMerge() 方法沒有開啟事務,不論其內部是否使用 try 塊,都只能部分回滾 testB(),而 testA() 將無法回滾。
3.3 事務無法捕獲的異常
Spring 的事務預設會回滾 RuntimeException
及其子類,以及 Error
型別的異常。
如果丟擲的是其他型別的異常,例如 checked exceptions
(檢查型異常),即繼承自 Exception 但不繼承自 RuntimeException 的異常,比如 SQLException
、DuplicateKeyException
,IOException,ClassNotFoundException,FileNotFoundException等事務將不會回滾。
所以,我們在主動丟擲異常時,要確保該異常是事務能夠捕獲的型別。
@Transactional public String testMerge() throws Exception { try { testAService.testA(); testBService.testB(); } catch (Exception e) { log.error("testMerge error:{}", e); // throw new RuntimeException(e); throw new Exception(e); } return "ok"; }
如果你非要丟擲預設情況下不會導致事務回滾的異常,務必要在 @Transactional
註解的 rollbackFor
引數中明確指定該異常,這樣才能進行回滾。
@Transactional(rollbackFor = Exception.class) public String testMerge() throws Exception { try { testAService.testA(); testBService.testB(); } catch (Exception e) { log.error("testMerge error:{}", e); // throw new RuntimeException(e); throw new Exception(e); } return "ok"; }
問問你身邊的同學,哪些異常屬於執行時異常,哪些屬於檢查型異常,十有八九他們可能無法給出準確的回答!
所以減少出現 bug 的風險,我建議使用 @Transactional 註解時,將 rollbackFor 引數設定為 Exception
或 Throwable
,這樣可以擴大事務回滾的範圍。
3.4 自定義異常範圍問題
針對不同業務定製異常型別是比較常見的做法,@Transactional 註解的 rollbackFor 引數支援自定義的異常,但我們往往習慣於將這些自定義異常繼承自 RuntimeException。
那麼這就出現和上邊同樣的問題,事務的範圍不足,許多異常型別仍然無法觸發事務回滾。
@Transactional(rollbackFor = CustomException.class) public String testMerge() throws Exception { try { testAService.testA(); testBService.testB(); } catch (Exception e) { log.error("testMerge error:{}", e); // throw new RuntimeException(e); throw new Exception(e); } return "ok"; }
想要解決這個問題,可以在 catch 中主動丟擲我們自定義的異常。
@Transactional(rollbackFor = CustomException.class) public String testMerge() throws Exception { try { testAService.testA(); testBService.testB(); } catch (Exception e) { log.error("testMerge error:{}", e); throw new CustomException(e); } return "ok"; }
3.5 巢狀事務問題
還有一種場景就是巢狀事務問題,比如,我們在 testMerge() 方法中呼叫了事務方法 testA() 和事務方法 testB(),此時不希望 testB() 丟擲異常讓整個 testMerge() 都跟著回滾;這就需要單獨 try catch 處理 testB() 的異常,不讓異常在向上拋。
@RequiredArgsConstructor @Slf4j @Service public class TestMergeService { private final TestBService testBService; private final TestAService testAService; @Transactional public String testMerge() { testAService.testA(); try { testBService.testB(); } catch (Exception e) { log.error("testMerge error:{}", e); } return "ok"; } } @Service public class TestAService { @Transactional public String testA() { standardBakService.save(entity); return "ok"; } } @Service public class TestBService { @Transactional public String testB() { standardBakService.save(entity2); throw new RuntimeException("test2"); } }
4. 總結
上面的關於 @Transactional 註解的使用注意事項是我在程式碼審查和蒐集網路觀點後整理出的。之前我也寫過類似的文章,但當時內容不夠全面。這次的補充更為詳盡,涵蓋了更多細節。開發工作只是整體工作量的一小部分,更多時間實際上花在了自測和驗證上。希望這些案例對大家有所收穫,少踩坑。
轉載連結地址:https://mp.weixin.qq.com/s/DCh6bTeaVPN74eKwvSE0Gg