问题是这样的:我有一个Spring Batch作业,只需一步。此步骤被多次调用。如果每次调用它一切正常(没有异常),则作业状态为“已完成”。如果至少在Step的一个执行中发生了错误(抛出异常),我已经配置了一个StepListener,它将退出代码更改为FAILED:
public class SkipCheckingListener extends StepExecutionListenerSupport {
public ExitStatus afterStep(StepExecution stepExecution) {
String exitCode = stepExecution.getExitStatus().getExitCode();
if (stepExecution.getProcessorSkipCount() > 0) {
return new ExitStatus(ExitStatus.FAILED);
}
else {
return null;
}
}
}
这样可以正常工作,当满足条件时,“if”块被激活并且作业完成且状态为FAILED。但请注意,我返回的退出代码仍然是Spring Batch附带的标准代码。我想在某些时候返回我的个性化退出代码,例如“已完成跳过”。现在我已经尝试更新上面的代码,只返回:
public class SkipCheckingListener extends StepExecutionListenerSupport {
public ExitStatus afterStep(StepExecution stepExecution) {
String exitCode = stepExecution.getExitStatus().getExitCode();
if (stepExecution.getProcessorSkipCount() > 0) {
return new ExitStatus("COMPLETED WITH SKIPS");
}
else {
return null;
}
}
}
如文档中所述:http://static.springsource.org/spring-batch/reference/html/configureStep.html(5.3.2.1。批处理状态与退出状态)。我甚至试过
stepExecution.getJobExecution().setExitStatus("COMPLETED WITH SKIPS");
果然,执行到达“if”块,执行代码,然后我的作业仍以退出代码COMPLETED结束,完全忽略我通过监听器设置的退出代码。
在他们的文档中没有关于此的详细信息,我还没有找到任何使用Google的内容。有人可以告诉我如何以这种方式更改Job退出代码?感谢名单
答案 0 :(得分:7)
看起来你无法改变BatchStatus,但你可以尝试使用exitstatus
此代码JobListener适用于我
// JobListener with interface or annotation
public void afterJob(JobExecution jobExecution) {
jobExecution.setExitStatus(new ExitStatus("foo", "fooBar"));
}