For the FlatFileItemReader
as well as any other ItemReader
that extends AbstractItemCountingItemStreamItemReader
, there is a maxItemCount
property. By configuring this property, the ItemReader
will continue to read until either one of the following conditions has been met:
- The input has been exhausted.
- The number of items read equals the
maxItemCount
.
In either of the two above conditions, null will be returned by the reader, indicating to Spring Batch that the input is complete.
If you have any custom ItemReader
implementations that need to satisfy this requirement, I'd recommend extending the AbstractItemCountingItemStreamItemReader
and going from there.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…