Skip to content
Advertisement

FlatFileItemWriter – Writer must be open before it can be written to

I’ve a SpringBatch Job where I skip all duplicate items write to a Flat file.

However the FlatFileItemWriter throws the below error whenever there’s a duplicate:

Writer must be open before it can be written to

Below is the Writer & SkipListener configuration –

JavaScript

The overall Job is defined as below and I’m using the duplicateItemWriter from the SkipListener.

JavaScript

I’ve also tried to write all data to FlatFileItemWriter – that doesn’t work as well. However if write to a DB, then there’s no issue with it.

The Spring-Batch version I’m using is – 4.3.3 I’ve referred to the below threads as well:

Advertisement

Answer

This was just gross oversight, I missed that the FlatFileItemWriter needs a stream. I’m somewhat disappointed to put up this question, but I’m posting the answer just in case it helps someone.

The solution was as simple as adding a stream(dupItemWriter) to the Job Definition.

FlatfileItemWriter with Compositewriter example

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement