The app here contains a list of AggregateItemReader readers, but I cannot find it in any of the Spring Batch jar files. I am using Spring package with Spring boot and have version 3.0.7.
The Doc API points it in the sample package.
I am currently using JdbcPagingItemReader in my project, but I want the reader to return List or Collection objects for the processor instead of a single object. This is necessary so that I can process these objects in bulk one after another.
The pagination requirement is mandatory, so I use JdbcPagingItemReader
After reading the description, it looks like AggregateItemReader , but cannot find its implementation.
Any ideas? Are there any alternatives?
source share