Spring Batch: is this a tasklet or chunk?

975 Views Asked by At

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?

1

There are 1 best solutions below

0
On

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:

<job id="readMultiFileJob" xmlns="http://www.springframework.org/schema/batch">
  <step id="step1" next="deleteDir">
    <tasklet>
      <chunk reader="multiResourceReader" writer="flatFileItemWriter"
        commit-interval="1" />
    </tasklet>
  </step>
  <step id="deleteDir">
    <tasklet ref="fileDeletingTasklet" />
  </step>
</job>

<bean id="fileDeletingTasklet" class="com.mkyong.tasklet.FileDeletingTasklet" >
  <property name="directory" value="file:csv/inputs/" />
</bean>

<bean id="multiResourceReader"
class=" org.springframework.batch.item.file.MultiResourceItemReader">
  <property name="resources" value="file:csv/inputs/domain-*.csv" />
  <property name="delegate" ref="flatFileItemReader" />
</bean>

Thus you can see that the distinction is actually on the level of steps, not for the entire job.