0
私はバッチバッチ3を使用しています。バッチcoutains 3ステップです。最初のステップまたは2番目のステップが失敗した場合、最後のステップにスキップする方法を探しています。 Java Config。最初の1つが失敗した場合は別のステップにスキップ
public Job parcelExportJob() {
return jobBuilders.get(PARCEL_EXPORT_JOB)
.start(step1()) // i wan to skip this step and pass directly to the last one
.next(step2())
.next(step3())
.next(step4())
.build();
}