Appendix Here lists a reader AggregateItemReader
but I am not able to find it in any of Spring Batch jar files. I am using spring batch with spring boot and have version 3.0.7.
API Doc indicates it in samples package.
Currently, I am using JdbcPagingItemReader
in my project but I want reader to return a List
or Collection
of objects to processor instead of a single object.This is needed so I can process those objects in bulk instead of processing one by one.
Pagination requirement is mandatory so I use JdbcPagingItemReader
By reading description, it looks AggregateItemReader
was the candidate but can't find its implementation.
Any Ideas? Are there any alternatives?