Class RepositoryItemReader<T>
- java.lang.Object
- org.springframework.batch.item.ItemStreamSupport
- org.springframework.batch.item.support.AbstractItemStreamItemReader<T>
- org.springframework.batch.item.support.AbstractItemCountingItemStreamItemReader<T>
- org.springframework.batch.item.data.RepositoryItemReader<T>
- All Implemented Interfaces:
ItemReader<T>,ItemStream,ItemStreamReader<T>,org.springframework.beans.factory.InitializingBean
public class RepositoryItemReader<T> extends AbstractItemCountingItemStreamItemReader<T> implements org.springframework.beans.factory.InitializingBean
A
ItemReaderthat reads records utilizing aPagingAndSortingRepository.Performance of the reader is dependent on the repository implementation, however setting a reasonably large page size and matching that to the commit interval should yield better performance.
The reader must be configured with a
PagingAndSortingRepository, aSort, and a pageSize greater than 0.This implementation is thread-safe between calls to
AbstractItemCountingItemStreamItemReader.open(ExecutionContext), but remember to usesaveState=falseif used in a multi-threaded client (no restart available).It is important to note that this is a paging item reader and exceptions that are thrown while reading the page itself (mapping results to objects, etc in the
doPageRead()) will not be skippable since this reader has no way of knowing if an exception should be skipped and therefore will continue to read the same page until the skip limit is exceeded.NOTE: The
RepositoryItemReaderonly reads Java Objects i.e. non primitives.- Since:
- 2.2
- Author:
- Michael Minella
Field Summary
Fields Modifier and Type Field Description protected org.apache.commons.logging.Loglogger
Constructor Summary
Constructors Constructor Description RepositoryItemReader()
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidafterPropertiesSet()protected voiddoClose()Close the resources opened inAbstractItemCountingItemStreamItemReader.doOpen().protected voiddoOpen()Open resources necessary to start reading input.protected java.util.List<T>doPageRead()Performs the actual reading of a page via the repository.protected TdoRead()Read next item from input.protected voidjumpToItem(int itemLastIndex)Move to the given item index.voidsetArguments(java.util.List<?> arguments)Arguments to be passed to the data providing method.voidsetMethodName(java.lang.String methodName)Specifies what method on the repository to call.voidsetPageSize(int pageSize)voidsetRepository(org.springframework.data.repository.PagingAndSortingRepository<?,?> repository)ThePagingAndSortingRepositoryimplementation used to read input from.voidsetSort(java.util.Map<java.lang.String,org.springframework.data.domain.Sort.Direction> sorts)Provides ordering of the results so that order is maintained between paged queriesMethods inherited from class org.springframework.batch.item.support.AbstractItemCountingItemStreamItemReader
close, getCurrentItemCount, isSaveState, open, read, setCurrentItemCount, setMaxItemCount, setSaveState, update
Methods inherited from class org.springframework.batch.item.ItemStreamSupport
getExecutionContextKey, setExecutionContextName, setName
Method Detail
setArguments
public void setArguments(java.util.List<?> arguments)
Arguments to be passed to the data providing method.- Parameters:
arguments- list of method arguments to be passed to the repository
setSort
public void setSort(java.util.Map<java.lang.String,org.springframework.data.domain.Sort.Direction> sorts)
Provides ordering of the results so that order is maintained between paged queries- Parameters:
sorts- the fields to sort by and the directions
setPageSize
public void setPageSize(int pageSize)
- Parameters:
pageSize- The number of items to retrieve per page.
setRepository
public void setRepository(org.springframework.data.repository.PagingAndSortingRepository<?,?> repository)
ThePagingAndSortingRepositoryimplementation used to read input from.- Parameters:
repository- underlying repository for input to be read from.
setMethodName
public void setMethodName(java.lang.String methodName)
Specifies what method on the repository to call. This method must takePageableas the last argument.- Parameters:
methodName- name of the method to invoke
afterPropertiesSet
public void afterPropertiesSet() throws java.lang.Exception- Specified by:
afterPropertiesSetin interfaceorg.springframework.beans.factory.InitializingBean- Throws:
java.lang.Exception
doRead
protected T doRead() throws java.lang.Exception
Description copied from class:AbstractItemCountingItemStreamItemReaderRead next item from input.- Specified by:
doReadin classAbstractItemCountingItemStreamItemReader<T>- Returns:
- an item or
nullif the data source is exhausted - Throws:
java.lang.Exception- Allows subclasses to throw checked exceptions for interpretation by the framework
jumpToItem
protected void jumpToItem(int itemLastIndex) throws java.lang.ExceptionDescription copied from class:AbstractItemCountingItemStreamItemReaderMove to the given item index. Subclasses should override this method if there is a more efficient way of moving to given index than re-reading the input usingAbstractItemCountingItemStreamItemReader.doRead().- Overrides:
jumpToItemin classAbstractItemCountingItemStreamItemReader<T>- Parameters:
itemLastIndex- index of item (0 based) to jump to.- Throws:
java.lang.Exception- Allows subclasses to throw checked exceptions for interpretation by the framework
doPageRead
protected java.util.List<T> doPageRead() throws java.lang.Exception
Performs the actual reading of a page via the repository. Available for overriding as needed.- Returns:
- the list of items that make up the page
- Throws:
java.lang.Exception- Based on what the underlying method throws or related to the calling of the method
doOpen
protected void doOpen() throws java.lang.ExceptionDescription copied from class:AbstractItemCountingItemStreamItemReaderOpen resources necessary to start reading input.- Specified by:
doOpenin classAbstractItemCountingItemStreamItemReader<T>- Throws:
java.lang.Exception- Allows subclasses to throw checked exceptions for interpretation by the framework
doClose
protected void doClose() throws java.lang.ExceptionDescription copied from class:AbstractItemCountingItemStreamItemReaderClose the resources opened inAbstractItemCountingItemStreamItemReader.doOpen().- Specified by:
doClosein classAbstractItemCountingItemStreamItemReader<T>- Throws:
java.lang.Exception- Allows subclasses to throw checked exceptions for interpretation by the framework