春批。使用rollbackFor调用方法

时间:2013-12-05 21:38:48

标签: java jpa transactions spring-batch

在某个批处理作业中,我从类中调用一个方法,该方法标记为:

@Transactional(propagation = Propagation.REQUIRED, noRollbackFor = {
        Fault.class,
        AnotherFault.class
})
public class ...

并且,当我调用此方法时,异常抛出我得到异常:

00:29:25,765 ERROR [org.springframework.batch.core.step.AbstractStep] (executor-2) Encountered an error executing the step: org.springframework.transaction.TransactionSystemException: Could not commit JPA transaction; nested exception is javax.persistence.RollbackException: Transaction marked as rollbackOnly

要解决此问题,我尝试使用嵌套事务。 Jpa不支持嵌套事务,因此我使用:

创建虚拟类
@Transactional(propagation = Propagation.NOT_SUPPORTED)

从没有事务的虚拟类调用,我的方法有事务和rollbackFor。

此处描述的结果:http://postgresql.1045698.n5.nabble.com/locking-problem-in-jdbc-driver-td2174897.html

因此,另一种解决此问题的方法 - 配置作业:

<batch:step id="parse-step">
    <batch:tasklet>
        <batch:chunk reader="xmlCommonJob.Reader"
                     processor="xmlCommonJob.Processor"
                     writer="xmlCommonJob.Writer"
                     commit-interval="2"/>
        <batch:no-rollback-exception-classes>
            <batch:include class="com.my.common.services.fault.Fault"/>
            <batch:include class="com.my.common.services.fault.AnotherFault"/>
        </batch:no-rollback-exception-classes>
    </batch:tasklet>
    <batch:next on="FAILED" to="file-failed-step"/>
    <batch:next on="COMPLETED" to="file-success-step"/>
</batch:step>

一切都无济于事。

有什么想法吗?

2 个答案:

答案 0 :(得分:2)

在Spring Batch中我们不应该在步骤中捕获异常,对于登录数据库,我们应该使用listener:

    <batch:step id="parse-step">
        <batch:tasklet>
            <batch:chunk reader="xmlCommonJob.Reader"
                         processor="xmlCommonJob.Processor"
                         writer="xmlCommonJob.Writer"
                         commit-interval="1">
            <batch:skip-policy>
                <bean class="org.springframework.batch.core.step.skip.AlwaysSkipItemSkipPolicy" scope="step"/>
            </batch:skip-policy>
            </batch:chunk>
        </batch:tasklet>
        <batch:next on="FAILED" to="file-failed-step"/>
        <batch:next on="COMPLETED" to="file-success-step"/>
        <batch:listeners>
            <batch:listener ref="parseStepExecutionListener"/>
            <batch:listener ref="parseStepSkipListener"/>
        </batch:listeners>
    </batch:step>

在bean parseStepSkipListener 中使用logger记录异常并将信息保存到数据库。

答案 1 :(得分:1)

使用Spring Batch时,不建议使用@Transaction注释业务方法。 Spring Batch处理框架内的事务语义,因此添加@Transactional会导致问题。我建议删除注释并让Spring Batch处理它。