I have spring batch job like this.
<batch:job id="jobId">
<batch:step id="step1" next="step2">...</batch:step>
<batch:step id="step2" next="step3">...</batch:step>
<batch:split id="step3" next="step4">
...
</batch:split>
<batch:step id="step4" next="step2">...</batch:step>
</batch:job>
And I need to test split with id "step3" separatly. I have unit tests for every step (step1, step2 and step4). I there anyway to do it? (spring-batch:2.1.1.RELEASE)
I have tried few ways. First way, I externilized split into flow, and call it inside step. Something like this:
<batch:job id="jobId">
<batch:step id="step1" next="step2">...</batch:step>
<batch:step id="step2" next="step3">...</batch:step>
<batch:step id="step3" next="step4">
<batch:flow parent="split"/>
</batch:step>
<batch:step id="step4" next="step2">...</batch:step>
</batch:job>
<batch:flow>
<batch:split id="split">
...
</batch:split>
</batch:flow>
But I was unable to load Application context, (NullPointerException inside SplitParser:parse:96).
And tried to externilize using another job:
<batch:job id="jobId">
<batch:step id="step1" next="step2">...</batch:step>
<batch:step id="step2" next="step3">...</batch:step>
<batch:step id="step3" next="step4">
<batch:job1 ref="job1"/>
</batch:step>
<batch:step id="step4" next="step2">...</batch:step>
</batch:job>
<batch:job id="job1">
<batch:split id="split">
...
</batch:split>
</batch:job>
But here I got problem with job context.