Hi all,

I am new to spring batch. I'm encoding a batch of spring. I have three input files (client.xml, campaign.txt and famliy.txt) that make up the java object (Message.java) that I should persist. I should read a line from each of the 3files and build the object, the object has properties in 3 files. How I can make a batch that has 3 itemReaders, so read the 3 files and build my object?

Client.xml-> name, id
Campaign.xml -> date, name_campaign
Family.xml -> famliy_name


Java Object: name, id, date, name_campaign, familiy_name


May be somting like this?


<tasklet>
<chunk reader="itemReader" processor="processor" writer="tradeWriter">
<streams>
<stream ref="fileItemReader" />
</streams>
</chunk>
</tasklet>

Any example?


Thank you!