Class ClassifierCompositeItemWriter<T>
- java.lang.Object
- org.springframework.batch.item.support.ClassifierCompositeItemWriter<T>
- All Implemented Interfaces:
ItemWriter<T>
public class ClassifierCompositeItemWriter<T> extends java.lang.Object implements ItemWriter<T>
Calls one of a collection of ItemWriters for each item, based on a router pattern implemented through the providedClassifier. The implementation is thread-safe if all delegates are thread-safe.- Since:
- 2.0
- Author:
- Dave Syer, Glenn Renfro
Constructor Summary
Constructors Constructor Description ClassifierCompositeItemWriter()
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidsetClassifier(org.springframework.classify.Classifier<T,ItemWriter<? super T>> classifier)voidwrite(java.util.List<? extends T> items)Delegates to injectedItemWriterinstances according to their classification by theClassifier.
Method Detail
setClassifier
public void setClassifier(org.springframework.classify.Classifier<T,ItemWriter<? super T>> classifier)
- Parameters:
classifier- the classifier to set
write
public void write(java.util.List<? extends T> items) throws java.lang.Exception
Delegates to injectedItemWriterinstances according to their classification by theClassifier.- Specified by:
writein interfaceItemWriter<T>- Parameters:
items- items to be written- Throws:
java.lang.Exception- if there are errors. The framework will catch the exception and convert or rethrow it as appropriate.