私は春のバッチをインプレースで取得し、再試行ロジックを構成したいのですが、次の構成を取得しました:
<step id="roundUpMonthlyJobFetchUsers">
<tasklet>
<chunk reader="roundUpMonthlyItemReader" processor="roundUpMonthlyItemProcessor"
writer="roundUpMonthlyItemWriter" commit-interval="1" retry-limit="3" >
<retryable-exception-classes>
<include class="java.io.IOException" />
</retryable-exception-classes>
</chunk>
</tasklet>
<end on="COMPLETED"/>
<fail on="FAILED"/>
</step>
IOException が発生したときに、これが実際に少なくとも 3 回操作を実行しようとしていることをどのように確認できますか?