114

我在 @Transactional 方法中提交事务时遇到问题:

methodA() {
    methodB()
}

@Transactional
methodB() {
    ...
    em.persist();
    ...
    em.flush();
    log("OK");
}

当我从 methodA() 调用 methodB() 时,该方法成功通过,我可以在日志中看到“OK”。但后来我得到

Could not commit JPA transaction; nested exception is javax.persistence.RollbackException: Transaction marked as rollbackOnly org.springframework.transaction.TransactionSystemException: Could not commit JPA transaction; nested exception is javax.persistence.RollbackException: Transaction marked as rollbackOnly
    at org.springframework.orm.jpa.JpaTransactionManager.doCommit(JpaTransactionManager.java:521)
    at org.springframework.transaction.support.AbstractPlatformTransactionManager.processCommit(AbstractPlatformTransactionManager.java:754)
    at org.springframework.transaction.support.AbstractPlatformTransactionManager.commit(AbstractPlatformTransactionManager.java:723)
    at org.springframework.transaction.interceptor.TransactionAspectSupport.commitTransactionAfterReturning(TransactionAspectSupport.java:393)
    at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:120)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172)
    at org.springframework.aop.framework.Cglib2AopProxy$DynamicAdvisedInterceptor.intercept(Cglib2AopProxy.java:622)
    at methodA()...
  1. 异常中完全缺少methodB的上下文-我想这可以吗?
  2. methodB() 中的某些内容仅将事务标记为回滚?我怎样才能找到它?例如有没有办法检查类似的东西getCurrentTransaction().isRollbackOnly()?- 像这样我可以逐步检查方法并找到原因。
4

9 回答 9

119

当您将方法标记为时,方法中@Transactional出现的任何异常都会将周围的 TX 标记为仅回滚(即使您捕获它们)。您可以使用@Transactional注释的其他属性来防止它回滚,例如:

@Transactional(rollbackFor=MyException.class, noRollbackFor=MyException2.class)
于 2013-10-11T06:03:14.407 回答
79

我终于明白了这个问题:

methodA() {
    methodB()
}

@Transactional(noRollbackFor = Exception.class)
methodB() {
    ...
    try {
        methodC()
    } catch (...) {...}
    log("OK");
}

@Transactional
methodC() {
    throw new ...();
}

发生的情况是,即使methodB有正确的注释,methodC也没有。当抛出异常时,第二个@Transactional事务将第一个事务标记为 Rollback 。

于 2013-10-11T06:56:35.813 回答
53

要快速获取导致的异常而不需要重新编码或重建,请设置断点

org.hibernate.ejb.TransactionImpl.setRollbackOnly() // Hibernate < 4.3, or
org.hibernate.jpa.internal.TransactionImpl() // as of Hibernate 4.3

并在堆栈中向上,通常到某个拦截器。在那里,您可以从某个 catch 块中读取导致的异常。

于 2015-09-15T11:58:46.560 回答
13

我在运行我的应用程序时遇到了这个异常。

最后问题出在 sql 查询上。我的意思是查询是错误的。

请验证您的查询。这是我的建议

于 2016-02-10T10:52:08.233 回答
7

...查找在代码部分中引发和捕获的异常。运行时和回滚应用程序异常在从业务方法中抛出时会导致回滚,即使在其他地方捕获也是如此。

您可以使用上下文来确定事务是否标记为回滚。

@Resource
private SessionContext context;

context.getRollbackOnly();
于 2013-10-10T20:07:25.990 回答
7

找到了一个很好的解决方案解释:https ://vcfvct.wordpress.com/2016/12/15/spring-nested-transactional-rollback-only/

1) 如果它不需要事务控制,则从嵌套方法中删除 @Transacional。因此,即使它有异常,它也会冒泡并且不会影响事务性内容。

或者:

2)如果嵌套方法确实需要事务控制,则将其设置为传播策略的REQUIRE_NEW,这样即使抛出异常并仅标记为回滚,调用者也不会受到影响。

于 2018-07-23T05:59:42.557 回答
1

在 Bean.xml 中禁用事务管理器

<tx:annotation-driven proxy-target-class="true" transaction-manager="transactionManager"/>
    <bean id="transactionManager"
        class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"></property>
    </bean>

注释掉这些行,你会看到导致回滚的异常;)

于 2015-07-05T07:39:46.030 回答
0

在 productRepository 中应用以下代码

@Query("update Product set prodName=:name where prodId=:id ") @Transactional @Modifying int updateMyData(@Param("name")String name, @Param("id") Integer id);

而在junit测试中应用下面的代码

@Test
public void updateData()
{
  int i=productRepository.updateMyData("Iphone",102);

  System.out.println("successfully updated ... ");
  assertTrue(i!=0);

}

它适用于我的代码

于 2019-07-07T18:05:15.367 回答
0

嵌套方法回滚总是有原因的。如果您没有看到原因,您需要将您的记录器级别更改为调试,您将在其中看到事务失败的更多详细信息。我通过添加更改了我的 logback.xml

<logger name="org.springframework.transaction" level="debug"/>
<logger name="org.springframework.orm.jpa" level="debug"/>

然后我在日志中得到了这一行:

Participating transaction failed - marking existing transaction as rollback-only

所以我只是单步执行我的代码以查看生成此行的位置,发现有一个 catch 块没有抛出任何东西。

private Student add(Student s) {
        try {
            Student retval = studentRepository.save(s);
            return retval;
        } catch (Exception e) {
            
        }
        return null;
    }
于 2021-01-13T16:18:18.133 回答