spring batch 中 重写了afterread方法,但是原来调用的跳过方法不调用onskipinread
时间: 2023-06-25 13:06:28 浏览: 117
在 Spring Batch 中,如果在 `ItemReadListener` 中重写了 `afterRead` 方法,而在 `SkipListener` 中重写了 `onSkipInRead` 方法,那么当读取过程中出现跳过的时候,`onSkipInRead` 方法会被调用。如果没有调用这个方法,可能是因为你没有将 `SkipListener` 注册到 `Step` 中。
你可以通过以下方式将 `SkipListener` 注册到 `Step` 中:
```java
@Bean
public Step step() {
return stepBuilderFactory.get("step")
.<MyInput, MyOutput>chunk(10)
.reader(reader())
.processor(processor())
.writer(writer())
.faultTolerant()
.skip(MySkipException.class)
.skipLimit(10)
.listener(skipListener())
.build();
}
@Bean
public SkipListener<MyInput, MyOutput> skipListener() {
return new MySkipListener();
}
```
请注意,要确保 `SkipListener` 实例是在 `Step` 中声明的,这样才能确保 Spring Batch 能够正确地调用它的回调方法。
阅读全文