首页 >Java >java教程 >为什么 @Transactional 不适用于私有 Spring Bean 方法?

为什么 @Transactional 不适用于私有 Spring Bean 方法?

Barbara Streisand
Barbara Streisand原创
2024-12-17 12:26:26231浏览

Why Doesn't @Transactional Work on Private Spring Bean Methods?

私有方法上的 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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn