How to skip a step?
Scenario:
There are 3 steps in all.
Job run-1
Step-1 -> successful
Step-2 -> some validation errors in run-1 (user ignores these errors and then job runs again as a run-2)
Step-3 -> this step doesn't execute.
Job run-2
Step-3 -> step-1 and step-2 should be skipped and the job should start with step-3.
Can i implement this with the Spring Batch? How?
Thank you!

