shouldSkip metodu
Şöyle yaparız.
Şöyle yaparız.
public class DataDuplicateSkipper implements SkipPolicy {
@Override
public boolean shouldSkip(Throwable exception, int skipCount)
throws SkipLimitExceededException {
if (exception instanceof DataIntegrityViolationException) {
return true;
}
return true;
}
}
Hiç yorum yok:
Yorum Gönder