What I'm trying to accomplish is something like the following sudo-config where the writer for a chunk just writes items to a integration:channel.
Code:
<bean id="writer" class="????">
<property name="output-channel" ref="outputChannel"/>
</bean>
<batch:job id="processJob" job-repository="jobRepository">
<batch:step id="parse">
<batch:tasklet>
<batch:chunk reader="reader" writer="writer" commit-interval="100"/>
</batch:tasklet>
</batch:step>
</batch:job>
Does a writer which simply writes to a channel already exist? It's also possibly I'm not using spring batch integration correctly.