I am currently writing a Spring batch where I am reading a chunk of data, processing it and then I wish to pass this data to 2 writers. One writer would simply update the da
You can use Spring's CompositeItemWriter and delegate to it all your writers. here is a configuration example.