我有一个步骤如下,它保留了Table1中的一些记录:
<step id="myStep" parent="abstractStep"
next="anotherStep">
<tasklet>
<chunk reader="myReader" writer="myWriter" commit-interval="1"/>
</tasklet>
</step>
在这一步的 writer 中,我在Table2中写入了一条记录,并在Table3中更新了另一条记录。但问题是,Table2 的新记录和 Table3 的更新记录在该步骤完成之前不会被提交。
在步骤完成之前,如何将这些更改提交给 Table2 和 Table3?