I need to create 'N' number of steps, depending on the 'maxHierLevel value received from the database and execute them sequentially -
int maxHierLevel = testService.getHighestLevel();
Step masterCalculationStep = stepBuilderFactory.get("CALCUL_STEP_1")
.<Map<Long, List<CostCalculation>>, List<TempCostCalc>>chunk(1)
.reader(reader)
.processor(processor)
.writer(writer)
.build();
final Step[] stepsArray = new Step[maxHierLevel];
for (int i = 0; i < stepsArray.length; i++) {
stepsArray [i] = stepBuilderFactory.get("processingRecordsInLevel_"+i)
.partitioner("partitionningSlavStep_"+i , calculationPartioner(i))
.step(masterCalculationStep)
.listener(new StepResultListener())
.taskExecutor(taskExecutor)
.build();
}
return jobBuilderFactory.get("mainCalculationJob")
.incrementer(new RunIdIncrementer())
.flow(truncTableTaskletStep())
.next(loadPlantList)
.next(stepsArray[0])
.next(stepsArray[1])
.next(stepsArray[2])
.end()
.listener(listener)
.build();
can we dynamically adds steps like next(stepsArray[0]) and return job ref ?