Spring Batch:如何在步骤完成之前提交对db的更改?

时间:2013-02-05 08:26:00

标签: spring-batch

我有一个步骤,在 Table1

中保留一些记录
    <step id="myStep" parent="abstractStep"
          next="anotherStep">
        <tasklet>
            <chunk reader="myReader" writer="myWriter" commit-interval="1"/>
        </tasklet>
    </step>

在本步骤的作者中,我在 Table2 中写了一条记录,并在 Table3 中更新了另一条记录。 但问题是,在步骤完成之前,Table2的新记录和Table3的更新记录将不会被提交。

如何在步骤完成之前将这些更改提交到Table2和Table3?

0 个答案:

没有答案