How to set max no of records read in flatfileItemReader?

前端 未结 3 548
醉酒成梦
醉酒成梦 2020-12-21 02:36

My application needs only fixed no of records to be read & processed. How to limit this if I am using a flatfileItemReader ? In DB based Item Reader, I am returning nu

3条回答
  •  甜味超标
    2020-12-21 03:12

    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:

    1. The input has been exhausted.
    2. 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.

提交回复
热议问题