I am a real newbie on Spring Batch, so i am trying to solve some Problems and learn something about it. However, i am stuck with one of them.
Imagine two data sources from different suppliers describing the same thing in different formats (for example their stockpile) in CVS. Therefore I am using two different Reader to unify the data in a common object Product
. Then i have to accumulate all Products (via their name) and merge the available stocks for each product. Export is a single Report containing all available Products with their available stock numbers (CSV).
How should i partition my Problem for Spring Batch and process over all Elements?
Thanks in advance.