码迷,mamicode.com
首页 > 数据库 > 详细

事务不起作用 Closing non transactional SqlSession

时间:2016-08-06 09:52:00      阅读:4949      评论:0      收藏:0      [点我收藏+]

标签:

In proxy mode (which is the default), only external method calls coming in through the proxy are intercepted. This means that self-invocation, in effect, a method within the target object calling another method of the target object, will not lead to an actual transaction at runtime even if the invoked method is marked with @Transactional.

 

spring文档地址 :

http://docs.spring.io/spring/docs/4.2.0.RC1/spring-framework-reference/htmlsingle/#transaction-declarative-annotations

说明: 代理模式中,只拦截外部方法调用,开启事务。类内部调用无法实现事务控制。

错误示例:

public class Tx {
    
    public void a(){
        b();
    }
    
    @Transactional(propagation = Propagation.REQUIRED)
    public void b(){
        
    }

}

 

正确示例:

public class Tx {
    
    @Transactional(propagation = Propagation.REQUIRED)
    public void a(){
        b();
    }
    
    
    public void b(){
        
    }

}

 

事务不起作用 Closing non transactional SqlSession

标签:

原文地址:http://www.cnblogs.com/zno2/p/4875527.html

(1)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!