类 RetrySampleItemWriter<T>
- java.lang.Object
- org.springframework.batch.sample.support.RetrySampleItemWriter<T>
- 所有已实现的接口:
ItemWriter<T>
public class RetrySampleItemWriter<T> extends java.lang.Object implements ItemWriter<T>
Simulates temporary output trouble - requires to retry 3 times to pass successfully.- 作者:
- Robert Kasanicky
构造器概要
构造器 构造器 说明 RetrySampleItemWriter()
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 intgetCounter()voidwrite(java.util.List<? extends T> items)Process the supplied data element.
构造器详细资料
RetrySampleItemWriter
public RetrySampleItemWriter()
方法详细资料
write
public void write(java.util.List<? extends T> items) throws java.lang.Exception
从接口复制的说明:ItemWriterProcess the supplied data element. Will not be called with any null items in normal operation.- 指定者:
write在接口中ItemWriter<T>- 参数:
items- items to be written- 抛出:
java.lang.Exception- if there are errors. The framework will catch the exception and convert or rethrow it as appropriate.
getCounter
public int getCounter()
- 返回:
- number of times
write(List)method was called.