Class ItemWriterAdapter<T>

java.lang.Object
org.springframework.batch.item.adapter.AbstractMethodInvokingDelegator<T>
org.springframework.batch.item.adapter.ItemWriterAdapter<T>
All Implemented Interfaces:
ItemWriter<T>, org.springframework.beans.factory.InitializingBean

public class ItemWriterAdapter<T> extends AbstractMethodInvokingDelegator<T> implements ItemWriter<T>
Delegates item processing to a custom method - passes the item as an argument for the delegate method.
Author:
Robert Kasanicky
See Also:
  • Constructor Details

    • ItemWriterAdapter

      public ItemWriterAdapter()
  • Method Details

    • write

      public void write(List<? extends T> items) throws Exception
      Description copied from interface: ItemWriter
      Process the supplied data element. Will not be called with any null items in normal operation.
      Specified by:
      write in interface ItemWriter<T>
      Parameters:
      items - items to be written
      Throws:
      Exception - if there are errors. The framework will catch the exception and convert or rethrow it as appropriate.