私有方法上的Spring @Transactional 註解
如果@Transactional 註解應用於Spring bean 中的私人方法,則不會有什麼影響。這是因為負責為 Spring bean 建立代理的代理產生器在產生代理時忽略私有方法。
例如,考慮以下 Spring bean:
public class Bean { public void doStuff() { doPrivateStuff(); } @Transactional private void doPrivateStuff() { } }
當建立應用程式上下文後,將為 Bean 類別建立一個代理程式。但是,doPrivateStuff 方法上的 @Transactional 註解將被忽略,並且該方法將不會顯示配置的事務設定。
此行為記錄在 Spring 手冊第 10.5.6 章:
When using proxies, you should apply the @Transactional annotation only to methods with public visibility. If you do annotate protected, private or package-visible methods with the @Transactional annotation, no error is raised, but the annotated method does not exhibit the configured transactional settings. Consider the use of AspectJ (see below) if you need to annotate non-public methods.
以上是為什麼 @Transactional 不適用於私人 Spring Bean 方法?的詳細內容。更多資訊請關注PHP中文網其他相關文章!