SpringBoot内部调用事务不起作用问题的解决方案

在做业务开发时,遇到了一个事务不起作用的问题。大概流程是这样的,方法内部的定时任务调用了一个带事务的方法,失败后事务没有回滚。查阅资料后,问题得到解决,记录下来分享给大家。

Transactional失效场景介绍

第一种 Transactional注解标注方法修饰符为非public时,@Transactional注解将会不起作用。例如以下代码。

定义一个错误的@Transactional标注实现,修饰一个默认访问符的方法

/**

*@authorzhoujy

**/

@Component

publicclassTestServiceImpl{

@Resource

TestMapper testMapper;

@Transactional

voidinsertTestWrongModifier(){

intre = testMapper.insert(newTest(10,20,30));

if(re >0) {

thrownewNeedToInterceptException("need intercept");

}

testMapper.insert(newTest(210,20,30));

}

}

在同一个包内,新建调用对象,进行访问。

@Component

publicclassInvokcationService{

@Resource

privateTestServiceImpl testService;

publicvoidinvokeInsertTestWrongModifier(){

//调用@Transactional标注的默认访问符方法

testService.insertTestWrongModifier();

}

}

测试用例

@RunWith(SpringRunner.class)

@SpringBootTest

publicclassDemoApplicationTests

{

@Resource

InvokcationService invokcationService;

@Test

publicvoidtestInvoke(){

invokcationService.invokeInsertTestWrongModifier();

}

}

以上的访问方式,导致事务没开启,因此在方法抛出异常时,testMapper.insert(new Test(10,20,30));操作不会进行回滚。如果TestServiceImpl#insertTestWrongModifier方法改为public的话将会正常开启事务,testMapper.insert(new Test(10,20,30));将会进行回滚。

第二种

在类内部调用调用类内部@Transactional标注的方法。这种情况下也会导致事务不开启。示例代码如下。

设置一个内部调用

/**

*@authorzhoujy

**/

@Component

publicclassTestServiceImplimplementsTestService{

@Resource

TestMapper testMapper;

@Transactional

publicvoidinsertTestInnerInvoke(){

//正常public修饰符的事务方法

intre = testMapper.insert(newTest(10,20,30));

if(re >0) {

thrownewNeedToInterceptException("need intercept");

}

testMapper.insert(newTest(210,20,30));

}

publicvoidtestInnerInvoke(){

//类内部调用@Transactional标注的方法。

insertTestInnerInvoke();

}

}

测试用例。

@RunWith(SpringRunner.class)

@SpringBootTest

publicclassDemoApplicationTests

{

@Resource

TestServiceImpl testService;

/**

* 测试内部调用@Transactional标注方法

*/

@Test

publicvoidtestInnerInvoke(){

//测试外部调用事务方法是否正常

//testService.insertTestInnerInvoke();

//测试内部调用事务方法是否正常

testService.testInnerInvoke();

}

}

上面就是使用的测试代码,运行测试知道,外部调用事务方法能够征程开启事务,testMapper.insert(new Test(10,20,30))操作将会被回滚;

然后运行另外一个测试用例,调用一个方法在类内部调用内部被@Transactional标注的事务方法,运行结果是事务不会正常开启,testMapper.insert(new Test(10,20,30))操作将会保存到数据库不会进行回滚。

第三种

事务方法内部捕捉了异常,没有抛出新的异常,导致事务操作不会进行回滚。示例代码如下。

/**

*@authorzhoujy

**/

@Component

publicclassTestServiceImplimplementsTestService{

@Resource

TestMapper testMapper;

@Transactional

publicvoidinsertTestCatchException(){

try{

intre = testMapper.insert(newTest(10,20,30));

if(re >0) {

//运行期间抛异常

thrownewNeedToInterceptException("need intercept");

}

testMapper.insert(newTest(210,20,30));

}catch(Exception e){

System.out.println("i catch exception");

}

}

}

测试用例代码如下。

@RunWith(SpringRunner.class)

@SpringBootTest

publicclassDemoApplicationTests

{

@Resource

TestServiceImpl testService;

@Test

publicvoidtestCatchException(){

testService.insertTestCatchException();

}

}

运行测试用例发现,虽然抛出异常,但是异常被捕捉了,没有抛出到方法 外, testMapper.insert(new Test(210,20,30))操作并没有回滚。

以上三种就是@Transactional注解不起作用,@Transactional注解失效的主要原因。下面结合spring中对于@Transactional的注解实现源码分析为何导致@Transactional注解不起作用。

@Transactional注解不起作用原理分析

第一种

@Transactional注解标注方法修饰符为非public时,@Transactional注解将会不起作用。这里分析 的原因是,@Transactional是基于动态代理实现的,@Transactional注解实现原理中分析了实现方法,在bean初始化过程中,对含有@Transactional标注的bean实例创建代理对象,这里就存在一个spring扫描@Transactional注解信息的过程,不幸的是源码中体现,标注@Transactional的方法如果修饰符不是public,那么就默认方法的@Transactional信息为空,那么将不会对bean进行代理对象创建或者不会对方法进行代理调用

@Transactional注解实现原理中,介绍了如何判定一个bean是否创建代理对象,大概逻辑是。根据spring创建好一个aop切点BeanFactoryTransactionAttributeSourceAdvisor实例,遍历当前bean的class的方法对象,判断方法上面的注解信息是否包含@Transactional,如果bean任何一个方法包含@Transactional注解信息,那么就是适配这个BeanFactoryTransactionAttributeSourceAdvisor切点。则需要创建代理对象,然后代理逻辑为我们管理事务开闭逻辑。

spring源码中,在拦截bean的创建过程,寻找bean适配的切点时,运用到下面的方法,目的就是寻找方法上面的@Transactional信息,如果有,就表示切点BeanFactoryTransactionAttributeSourceAdvisor能够应用(canApply)到bean中,

AopUtils#canApply(org.springframework.aop.Pointcut, java.lang.Class<?>, boolean)

publicstaticbooleancanApply(Pointcut pc, Class targetClass,booleanhasIntroductions){

Assert.notNull(pc,"Pointcut must not be null");

if(!pc.getClassFilter().matches(targetClass)) {

returnfalse;

}

MethodMatcher methodMatcher = pc.getMethodMatcher();

if(methodMatcher == MethodMatcher.TRUE) {

// No need to iterate the methods if we're matching any method anyway...

returntrue;

}

IntroductionAwareMethodMatcher introductionAwareMethodMatcher =null;

if(methodMatcherinstanceofIntroductionAwareMethodMatcher) {

introductionAwareMethodMatcher = (IntroductionAwareMethodMatcher) methodMatcher;

}

//遍历class的方法对象

Set> classes =newLinkedHashSet>(ClassUtils.getAllInterfacesForClassAsSet(targetClass));

classes.add(targetClass);

for(Class clazz : classes) {

Method[] methods = ReflectionUtils.getAllDeclaredMethods(clazz);

for(Method method : methods) {

if((introductionAwareMethodMatcher !=null&&

introductionAwareMethodMatcher.matches(method, targetClass, hasIntroductions)) ||

//适配查询方法上的@Transactional注解信息  

methodMatcher.matches(method, targetClass)) {

returntrue;

}

}

}

returnfalse;

}

我们可以在上面的方法打断点,一步一步调试跟踪代码,最终上面的代码还会调用如下方法来判断。在下面的方法上断点,回头看看方法调用堆栈也是不错的方式跟踪。

AbstractFallbackTransactionAttributeSource#getTransactionAttribute

AbstractFallbackTransactionAttributeSource#computeTransactionAttribute

protectedTransactionAttributecomputeTransactionAttribute(Method method, Class<?> targetClass){

// Don't allow no-public methods as required.

//非public 方法,返回@Transactional信息一律是null

if(allowPublicMethodsOnly() && !Modifier.isPublic(method.getModifiers())) {

returnnull;

}

//后面省略.......

}

不创建代理对象

所以,如果所有方法上的修饰符都是非public的时候,那么将不会创建代理对象。以一开始的测试代码为例,如果正常的修饰符的testService是下面图片中的,经过cglib创建的代理对象。

如果class中的方法都是非public的那么将不是代理对象。

不进行代理调用

考虑一种情况,如下面代码所示。两个方法都被@Transactional注解标注,但是一个有public修饰符一个没有,那么这种情况我们可以预见的话,一定会创建代理对象,因为至少有一个public修饰符的@Transactional注解标注方法。

创建了代理对象,insertTestWrongModifier就会开启事务吗?答案是不会。

/**

*@authorzhoujy

**/

@Component

publicclassTestServiceImplimplementsTestService{

@Resource

TestMapper testMapper;

@Override

@Transactional

publicvoidinsertTest(){

intre = testMapper.insert(newTest(10,20,30));

if(re >0) {

thrownewNeedToInterceptException("need intercept");

}

testMapper.insert(newTest(210,20,30));

}

@Transactional

voidinsertTestWrongModifier(){

intre = testMapper.insert(newTest(10,20,30));

if(re >0) {

thrownewNeedToInterceptException("need intercept");

}

testMapper.insert(newTest(210,20,30));

}

}

原因是在动态代理对象进行代理逻辑调用时,在cglib创建的代理对象的拦截函数中CglibAopProxy.DynamicAdvisedInterceptor#intercept,有一个逻辑如下,目的是获取当前被代理对象的当前需要执行的method适配的aop逻辑。

List chain =this.advised.getInterceptorsAndDynamicInterceptionAdvice(method, targetClass);

而针对@Transactional注解查找aop逻辑过程,相似地,也是执行一次

AbstractFallbackTransactionAttributeSource#getTransactionAttribute

AbstractFallbackTransactionAttributeSource#computeTransactionAttribute

也就是说还需要找一个方法上的@Transactional注解信息,没有的话就不执行代理@Transactional对应的代理逻辑,直接执行方法。没有了@Transactional注解代理逻辑,就无法开启事务,这也是上一篇已经讲到的。

第二种

在类内部调用调用类内部@Transactional标注的方法。这种情况下也会导致事务不开启。

经过对第一种的详细分析,对这种情况为何不开启事务管理,原因应该也能猜到;

既然事务管理是基于动态代理对象的代理逻辑实现的,那么如果在类内部调用类内部的事务方法,这个调用事务方法的过程并不是通过代理对象来调用的,而是直接通过this对象来调用方法,绕过的代理对象,肯定就是没有代理逻辑了。

其实我们可以这样玩,内部调用也能实现开启事务,代码如下。

/**

*@authorzhoujy

**/

@Component

publicclassTestServiceImplimplementsTestService{

@Resource

TestMapper testMapper;

@Resource

TestServiceImpl testServiceImpl;

@Transactional

publicvoidinsertTestInnerInvoke(){

intre = testMapper.insert(newTest(10,20,30));

if(re >0) {

thrownewNeedToInterceptException("need intercept");

}

testMapper.insert(newTest(210,20,30));

}

publicvoidtestInnerInvoke(){

//内部调用事务方法

testServiceImpl.insertTestInnerInvoke();

}

}

上面就是使用了代理对象进行事务调用,所以能够开启事务管理,但是实际操作中,没人会闲的蛋疼这样子玩~

第三种

事务方法内部捕捉了异常,没有抛出新的异常,导致事务操作不会进行回滚。

这种的话,可能我们比较常见,问题就出在代理逻辑中,我们先看看源码里卖弄动态代理逻辑是如何为我们管理事务的。

TransactionAspectSupport#invokeWithinTransaction

代码如下。

protectedObjectinvokeWithinTransaction(Method method, Class targetClass,finalInvocationCallback invocation)

throwsThrowable

{

// If the transaction attribute is null, the method is non-transactional.

finalTransactionAttribute txAttr = getTransactionAttributeSource().getTransactionAttribute(method, targetClass);

finalPlatformTransactionManager tm = determineTransactionManager(txAttr);

finalString joinpointIdentification = methodIdentification(method, targetClass);

if(txAttr ==null|| !(tminstanceofCallbackPreferringPlatformTransactionManager)) {

// Standard transaction demarcation with getTransaction and commit/rollback calls.

//开启事务

TransactionInfo txInfo = createTransactionIfNecessary(tm, txAttr, joinpointIdentification);

Object retVal =null;

try{

// This is an around advice: Invoke the next interceptor in the chain.

// This will normally result in a target object being invoked.

//反射调用业务方法

retVal = invocation.proceedWithInvocation();

}

catch(Throwable ex) {

// target invocation exception

//异常时,在catch逻辑中回滚事务

completeTransactionAfterThrowing(txInfo, ex);

throwex;

}

finally{

cleanupTransactionInfo(txInfo);

}

//提交事务

commitTransactionAfterReturning(txInfo);

returnretVal;

}

else{

//....................

}

}

所以看了上面的代码就一目了然了,事务想要回滚,必须能够在这里捕捉到异常才行,如果异常中途被捕捉掉,那么事务将不会回滚

场景

我在这里模拟一个场景,大概的调用方式就如下面的代码这样。

@Override

@Transactional(rollbackFor = RuntimeException.class)

publicvoidinsertUser(User user) {

  userMapper.insertUser(user);

  thrownewRuntimeException("");

}


/**

 * 内部调用新增方法

 *

 * @param user

 */

@Override

publicvoidinvokeInsertUser(User user) {

  this.insertUser(user);

}

原因

AOP使用的是动态代理的机制,它会给类生成一个代理类,事务的相关操作都在代理类上完成。内部方式使用this调用方式时,使用的是实例调用,并没有通过代理类调用方法,所以会导致事务失效。

解决办法

方法一 引入自身bean

在类内部通过@Autowired将本身bean引入,然后通过调用自身bean,从而实现使用AOP代理操作。

注入自身bean


@Autowired

@Lazy

privateUserService service;

修改invokeInsertUser方法


/**

 * 解决方法一 在bean中将自己注入进来

 * @param user

 */

@Override

publicvoidinvokeInsertUser(User user) {

  this.service.insertUser(user);

}

方法二 通过ApplicationContext引入bean

通过ApplicationContext获取bean,通过bean调用内部方法,就使用了bean的代理类。

注入ApplicationContext


@Autowired

ApplicationContext applicationContext;

修改invokeInsertUser方法


/**

 * 解决方法二 通过applicationContext获取到bean

 * @param user

 */

@Override

publicvoidinvokeInsertUser(User user) {

  ((UserService)applicationContext.getBean("userService")).invokeInsertUser(user);

}

方法三 通过AopContext获取当前类的代理类

通过AopContext获取当前类的代理类,直接通过代理类调用方法

在引导类上添加@EnableAspectJAutoProxy(exposeProxy=true)注解

修改invokeInsertUser方法


/**

 * 解决方法三 通过applicationContext获取到bean

 *

 * @param user

 */

@Override

publicvoidinvokeInsertUser(User user) {

  ((UserService) AopContext.currentProxy()).invokeInsertUser(user);

}

以上就是内部方法调用时,事务不起作用的原因及解决办法。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,126评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,254评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,445评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,185评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,178评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,970评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,276评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,927评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,400评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,883评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,997评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,646评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,213评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,204评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,423评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,423评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,722评论 2 345

推荐阅读更多精彩内容