Giriş
Şu satırı dahil ederiz.
Şöyle yaparız.
Ş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
class PersonWriter implements ItemWriter<PersonOutput> {
  @Override
  public void write(List<? extends PersonOutput> results) throws Exception {
    ...;
  }
} 
Hiç yorum yok:
Yorum Gönder