Uses of Interface
org.springframework.batch.item.ItemWriter

Packages that use ItemWriter
example   
org.springframework.batch.core.step.item Specific implementations of step concerns for item-oriented approach. 
org.springframework.batch.item.adapter Adapters for Plain Old Java Objects. 
org.springframework.batch.item.database Infrastructure implementations of database based item readers and writers. 
org.springframework.batch.item.file Infrastructure implementations of io file concerns. 
org.springframework.batch.item.jms   
org.springframework.batch.item.support Internal support package  
org.springframework.batch.item.xml Infrastructure implementations of xml input and output. 
org.springframework.batch.sample.common   
org.springframework.batch.sample.domain.football.internal   
org.springframework.batch.sample.domain.person.internal   
org.springframework.batch.sample.domain.trade   
org.springframework.batch.sample.domain.trade.internal   
org.springframework.batch.sample.support   
 

Uses of ItemWriter in example
 

Classes in example that implement ItemWriter
 class ExampleItemWriter
          Dummy ItemWriter which only logs data it receives.
 

Uses of ItemWriter in org.springframework.batch.core.step.item
 

Methods in org.springframework.batch.core.step.item that return ItemWriter
protected  ItemWriter<? super S> SimpleStepFactoryBean.getItemWriter()
          Protected getter for the ItemWriter for subclasses to use
 

Methods in org.springframework.batch.core.step.item with parameters of type ItemWriter
 void SimpleChunkProcessor.setItemWriter(ItemWriter<? super O> itemWriter)
           
 void SimpleStepFactoryBean.setItemWriter(ItemWriter<? super S> itemWriter)
           
 

Constructors in org.springframework.batch.core.step.item with parameters of type ItemWriter
FaultTolerantChunkProcessor(ItemProcessor<? super I,? extends O> itemProcessor, ItemWriter<? super O> itemWriter, BatchRetryTemplate batchRetryTemplate)
           
SimpleChunkProcessor(ItemProcessor<? super I,? extends O> itemProcessor, ItemWriter<? super O> itemWriter)
           
 

Uses of ItemWriter in org.springframework.batch.item.adapter
 

Classes in org.springframework.batch.item.adapter that implement ItemWriter
 class ItemWriterAdapter<T>
          Delegates item processing to a custom method - passes the item as an argument for the delegate method.
 class PropertyExtractingDelegatingItemWriter<T>
          Delegates processing to a custom method - extracts property values from item object and uses them as arguments for the delegate method.
 

Uses of ItemWriter in org.springframework.batch.item.database
 

Classes in org.springframework.batch.item.database that implement ItemWriter
 class HibernateItemWriter<T>
          ItemWriter that uses a Hibernate session to save or update entities that are not part of the current Hibernate session.
 class IbatisBatchItemWriter<T>
          ItemWriter that uses the batching features from SqlMapClientTemplate to execute a batch of statements for all items provided.
 class JdbcBatchItemWriter<T>
          ItemWriter that uses the batching features from SimpleJdbcTemplate to execute a batch of statements for all items provided.
 class JpaItemWriter<T>
          ItemWriter that is using a JPA EntityManagerFactory to merge any Entities that aren't part of the persistence context.
 

Uses of ItemWriter in org.springframework.batch.item.file
 

Subinterfaces of ItemWriter in org.springframework.batch.item.file
 interface ResourceAwareItemWriterItemStream<T>
          Interface for ItemWriters that implement ItemStream and write output to Resource.
 

Classes in org.springframework.batch.item.file that implement ItemWriter
 class FlatFileItemWriter<T>
          This class is an item writer that writes data to a file or stream.
 class MultiResourceItemWriter<T>
          Wraps a ResourceAwareItemWriterItemStream and creates a new output resource when the count of items written in current resource exceeds MultiResourceItemWriter.setItemCountLimitPerResource(int).
 

Uses of ItemWriter in org.springframework.batch.item.jms
 

Classes in org.springframework.batch.item.jms that implement ItemWriter
 class JmsItemWriter<T>
          An ItemWriter for JMS using a JmsTemplate.
 

Uses of ItemWriter in org.springframework.batch.item.support
 

Classes in org.springframework.batch.item.support that implement ItemWriter
 class AbstractItemStreamItemWriter<T>
          Base class for ItemWriter implementations.
 class ClassifierCompositeItemWriter<T>
          Calls one of a collection of ItemWriters for each item, based on a router pattern implemented through the provided Classifier.
 class CompositeItemWriter<T>
          Calls a collection of ItemWriters in fixed-order sequence.
 

Methods in org.springframework.batch.item.support with parameters of type ItemWriter
 void CompositeItemWriter.setDelegates(ItemWriter<? super T>[] delegates)
           
 

Method parameters in org.springframework.batch.item.support with type arguments of type ItemWriter
 void ClassifierCompositeItemWriter.setClassifier(Classifier<T,ItemWriter<? super T>> classifier)
           
 

Uses of ItemWriter in org.springframework.batch.item.xml
 

Classes in org.springframework.batch.item.xml that implement ItemWriter
 class StaxEventItemWriter<T>
          An implementation of ItemWriter which uses StAX and Marshaller for serializing object to XML.
 

Uses of ItemWriter in org.springframework.batch.sample.common
 

Classes in org.springframework.batch.sample.common that implement ItemWriter
 class InfiniteLoopWriter
          Simple module implementation that will always return true to indicate that processing should continue.
 class StagingItemWriter<T>
          Database ItemWriter implementing the process indicator pattern.
 

Uses of ItemWriter in org.springframework.batch.sample.domain.football.internal
 

Classes in org.springframework.batch.sample.domain.football.internal that implement ItemWriter
 class JdbcGameDao
           
 class JdbcPlayerSummaryDao
           
 class PlayerItemWriter
           
 

Uses of ItemWriter in org.springframework.batch.sample.domain.person.internal
 

Classes in org.springframework.batch.sample.domain.person.internal that implement ItemWriter
 class PersonWriter
           
 

Uses of ItemWriter in org.springframework.batch.sample.domain.trade
 

Classes in org.springframework.batch.sample.domain.trade that implement ItemWriter
 class CustomerUpdateWriter
           
 

Uses of ItemWriter in org.springframework.batch.sample.domain.trade.internal
 

Classes in org.springframework.batch.sample.domain.trade.internal that implement ItemWriter
 class CustomerCreditItemWriter
          Delegates actual writing to a custom DAO.
 class CustomerCreditUpdateWriter
           
 class HibernateAwareCustomerCreditItemWriter
          Delegates writing to a custom DAO and flushes + clears hibernate session to fulfill the ItemWriter contract.
 class TradeWriter
          Delegates the actual writing to custom DAO delegate.
 

Methods in org.springframework.batch.sample.domain.trade.internal with parameters of type ItemWriter
 void FlatFileCustomerCreditDao.setItemWriter(ItemWriter<String> itemWriter)
           
 

Uses of ItemWriter in org.springframework.batch.sample.support
 

Classes in org.springframework.batch.sample.support that implement ItemWriter
 class DummyItemWriter
           
 class RetrySampleItemWriter<T>
          Simulates temporary output trouble - requires to retry 3 times to pass successfully.
 



Copyright © 2009 SpringSource. All Rights Reserved.