13 Aralık 2018 Perşembe

SpringBatch ItemWriter Arayüzü

Giriş
Şu satırı dahil ederiz.
import org.springframework.batch.item.ItemWriter;
Kodu şöyle
public interface ItemWriter<T> {
  void write(List<? extends T> items) throws Exception;
}
write metodu
Şöyle yaparız.
class PersonWriter implements ItemWriter<PersonOutput> {
  @Override
  public void write(List<? extends PersonOutput> results) throws Exception {
    ...;
  }
}

Hiç yorum yok:

Yorum Gönder