在Spring Batch中停止beForeStep中的作业

2022-06-28 00:00:00 spring java spring-batch

我希望能够在达到计时阈值时停止作业。我在考虑两种方法。首先是在后续步骤中停止工作。但是,如果它是在最后一步完成时,我不希望它具有停止状态。因此,我将在beForeStep中停止它。

我尝试使用

public void beforeStep(StepExecution stepExecution) {
    stepExecution.setStatus(BatchStatus.STOPPED);
    return;
}

public void beforeStep(StepExecution stepExecution) {
    stepExecution.setExitStatus(ExitStatus.STOPPED);
    return;
}

这两种方法都不起作用。有什么建议吗?


解决方案

查看此问题here,操作员在他的问题中有此问题的解决方案。

jobListener略有不同

@Override
public void beforeJob(JobExecution jobExecution) {
        JobParameters jobParameters = jobExecution.getJobParameters();
        
        //check params etc
        
        if (!shouldExecute) {
            jobExecution.stop();
            jobExecution.setExitStatus(new ExitStatus("STOPPED", "Invalid state."));
            return;
        }
}

相关文章