For a spring batch workflow using java dsl, for example:
@Bean
public Job myWorkFlow() {
return jobBuilders.get("myWorkFlow")
.start(myFlowA.doStepA())
.next(myFlowB.doStepB())
.next(myFlowC.doStepC())
.end()
.build();
Does spring batch expose any api to see the workflow sequence of steps/tasklets, before the job is triggered. Once the job is launched, I can see the details in the BATCH_ tables and can also use jobExplorer.
Thanks.