Spring Batch 2.2.7中的ErrorInStep()方法缺少StepExecutionListener

时间:2016-05-27 14:17:03

标签: java spring spring-batch

我正在从Spring Batch 1.1.4迁移到Spring Batch 2.2.7,并且我实现了StepExecutionListener实现onErrorInStep。 Spring Batch 2.2.7的StepExecutionListener中不再提供此方法。

我是否需要使用任何其他接口/类?

1 个答案:

答案 0 :(得分:1)

您还可以很好地管理StepExecutionListener's afterStep()方法中的例外情况,如下所示:

ExitStatus afterStep(StepExecution stepExecution)
{
List exceptions = stepExecution.getFailureExceptions();
.......
}