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

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

Barbara Streisand
发布: 2024-12-17 12:26:26
原创
226 人浏览过

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中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板