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