Example usage for org.springframework.batch.item.support AbstractItemStreamItemWriter subclass-usage

List of usage examples for org.springframework.batch.item.support AbstractItemStreamItemWriter subclass-usage

Introduction

In this page you can find the example usage for org.springframework.batch.item.support AbstractItemStreamItemWriter subclass-usage.

Usage

From source file com.create.batch.NoOpItemWriter.java

/**
 * Dummy {@link ItemStreamWriter}
 *
 * @param <T> Item type
 */
public class NoOpItemWriter<T> extends AbstractItemStreamItemWriter<T> {

From source file pl.altkom.sping.batch.sample.writter.ExcelExporterItemWriter.java

/**
 *
 * @author admin
 */
public class ExcelExporterItemWriter<T> extends AbstractItemStreamItemWriter<T>
        implements ResourceAwareItemWriterItemStream<T> {

From source file org.springframework.batch.item.file.FlatFileItemWriter.java

/**
 * This class is an item writer that writes data to a file or stream. The writer
 * also provides restart. The location of the output file is defined by a
 * {@link Resource} and must represent a writable file.<br>
 * 
 * Uses buffered writer to improve performance.<br>

From source file org.springframework.batch.item.support.AbstractFileItemWriter.java

/**
 * Base class for item writers that write data to a file or stream.
 * This class provides common features like restart, force sync, append etc.
 * The location of the output file is defined by a {@link Resource} which must
 * represent a writable file.<br>
 * 

From source file org.springframework.batch.item.xml.StaxEventItemWriter.java

/**
 * An implementation of {@link ItemWriter} which uses StAX and
 * {@link Marshaller} for serializing object to XML.
 * 
 * This item writer also provides restart, statistics and transaction features
 * by implementing corresponding interfaces.

From source file org.springframework.xd.batch.item.hadoop.AbstractHdfsItemWriter.java

/**
 * 
 * @author Mark Pollack
 */
public abstract class AbstractHdfsItemWriter<T> extends AbstractItemStreamItemWriter<T> {