以下のようなエラー。そのまま指示通りに従えばOK。
1 |
java.lang.IllegalStateException: If a skip limit is provided then skippable exceptions must also be specified |
chunkに skip-limit を付け加えたらどのような例外時にスキップするか指定する必要がある。 以下の例は、java.lang.Exception を継承する例外全てスキップ対象とする
1 2 3 4 5 |
<b:chunk reader="monthlyListReader" processor="monthlyProcessor" writer="monthlyWriter" commit-interval="1" skip-limit="3"> <b:skippable-exception-classes> <b:include class="java.lang.Exception"/> </b:skippable-exception-classes> </b:chunk> |