1
我正在從Spring批處理1.1.4遷移到Spring批處理2.2.7,並且我有一個執行onErrorInStep
的StepExecutionListener
實現。該方法在Spring批次2.2.7的StepExecutionListener
中不再可用。StepExecutionListener在Spring批處理2.2.7中缺少onErrorInStep()方法
我需要使用任何其他接口/類嗎?
我正在從Spring批處理1.1.4遷移到Spring批處理2.2.7,並且我有一個執行onErrorInStep
的StepExecutionListener
實現。該方法在Spring批次2.2.7的StepExecutionListener
中不再可用。StepExecutionListener在Spring批處理2.2.7中缺少onErrorInStep()方法
我需要使用任何其他接口/類嗎?
你也可以很好地管理從StepExecutionListener's afterStep()
方法例外情況,如下圖所示:
ExitStatus afterStep(StepExecution stepExecution)
{
List exceptions = stepExecution.getFailureExceptions();
.......
}