I am trying to make my Spring Batch Admin console display the execution steps in the order they are executed. I have included an example with two steps for the purpose of the question. Step1 executes before Step2 because of how the job execution is setup in the xml; in the admin console however it is not showing them in this order. I have other jobs with many steps and the order on the Spring Batch Admin console page seems to be random (it is not alphabetical, not in the order of execution, etc).
This is a copy of what my Spring Batch Admin console displays:
StepName..Reads..Writes..Commits..Rollbacks..Duration..Status
step2...............0..........0.............1...............0.........00:00:05....COMPLETED
step1...............0..........0.............1...............0.........00:02:05....COMPLETED
From looking at the console it looks as if step2 will execute then step1. This is not the case because the job is setup to run the steps in order (step1 runs before step2). Has anyone had any success ordering the execution steps on the console in the actual order they are executing?
Thanks