这是创建流时如何配置它的示例。这应该与直接通过作业生成器进行配置类似:
return new FlowBuilder<SimpleFlow>("name") .start(step1) // .next(step2).on(ExitStatus.FAILED.getExitCode()).to(errorStep) .from(step2).on(ALL_PATTERN).to(step3) .build();
欢迎分享,转载请注明来源:内存溢出
这是创建流时如何配置它的示例。这应该与直接通过作业生成器进行配置类似:
return new FlowBuilder<SimpleFlow>("name") .start(step1) // .next(step2).on(ExitStatus.FAILED.getExitCode()).to(errorStep) .from(step2).on(ALL_PATTERN).to(step3) .build();
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)