I did some searching but couldn\'t find any sample/example.
I\'ve a requirement where geo coordinates from one table (input) are read, processed to generate POI\'s a
if you just want to spread the items to different writers (read duplicate output) you can use the existing CompositeItemWriter
but i'm not sure if your processor will produce different item types or if you want to spread the content of one complex item type to multiple writers, for those cases you can use a slightly changed version for a multiline-record-writer question
public class MultiOutputItemWriter implements ItemWriter
if you use FlatFileItemWriter, do not forget to register the delegates as ItemStreams (so spring batch will open/close them for you)