I'm a little bit confused!
Spring Batch provides two different ways for implementing a job: using tasklets and chunks.
So, when I have this:
<tasklet>
<chunk
reader = 'itemReader'
processor = 'itemProcessor'
writer = 'itemWriter'
/>
</tasklet>
What kind of implementation is this? Tasklet? Chunk?
That's a chunk type step, because inside the
<tasklet>
element is a<chunk>
element that defines a reader, writer, and/or processor.Below is an example of a job executing first a chunk and second a tasklet step:
Thus you can see that the distinction is actually on the level of steps, not for the entire job.