5

问题是这样的:我有一个多步骤的 Spring Batch 作业。基于第一步,我必须决定下一步。我可以根据作业参数在STEP1- passTasklet中设置状态,以便我可以将退出状态设置为自定义状态并在作业定义文件中定义它以转到下一步。

Example
<job id="conditionalStepLogicJob">
<step id="step1">
<tasklet ref="passTasklet"/>
<next on="BABY" to="step2a"/>
<stop on="KID" to="step2b"/>
<next on="*" to="step3"/>
</step>
<step id="step2b">
<tasklet ref="kidTasklet"/>
</step>
<step id="step2a">
<tasklet ref="babyTasklet"/>
</step>
<step id="step3">
<tasklet ref="babykidTasklet"/>
</step>
</job>

理想情况下,我希望在步骤之间使用我自己的退出状态。我可以这样做吗?它不会破坏任何 OOTB 流程吗?这样做是否有效

4

1 回答 1

10

他们有几种方法可以做到这一点。

您可以使用 aStepExecutionListener并覆盖该afterStep方法:

@AfterStep
public ExitStatus afterStep(){
    //Test condition
    return new ExistStatus("CUSTOM EXIT STATUS");
}

或使用 aJobExecutionDecider根据结果选择下一步。

public class CustomDecider implements JobExecutionDecider  {

    public FlowExecutionStatus decide(JobExecution jobExecution, StepExecution stepExecution) {
        if (/* your conditon */) {
            return new FlowExecutionStatus("OK");
        }
        return new FlowExecutionStatus("OTHER CODE HERE");
    }

}

xml配置:

    <decision id="decider" decider="decider">
        <next on="OK" to="step1" />
        <next on="OHTER CODE HERE" to="step2" />
    </decision>

<bean id="decider" class="com.xxx.CustomDecider"/>
于 2013-03-14T15:21:22.737 回答