Hi,
Is there a way to get the hierarchical order of steps, flows etc. of a job?
E.g. here is a dummy job config...
... and I want to get back that, Step_2 comes after Step_1, Split_1 comes after Step_2 etc.HTML Code:<batch:job id="job"> <batch:step id="Step_1" next="Step_2"> <batch:tasklet ref="step_1_tasklet" /> </batch:step> <batch:step id="Step_2" next="Split_1"> <batch:tasklet ref="step_2_tasklet" /> </batch:step> <batch:split id="Split_1" task-executor="taskExecutor"> <batch:flow> <batch:step id="Step_3"> <batch:tasklet ref="step_3_tasklet"></batch:tasklet> </batch:step> </batch:flow> <batch:flow> <batch:step id="Step_4" next="Step_5"> <batch:tasklet ref="step_4_tasklet"/> </batch:step> <batch:step id="Step_5"> <batch:tasklet ref="step_5_tasklet"/> </batch:step> </batch:flow> </batch:split> </batch:job>
Thx for your help.


Reply With Quote