Class HibernateCursorItemReader<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.database.HibernateCursorItemReader<T>
- All Implemented Interfaces:
ItemReader<T>,ItemStream,ItemStreamReader<T>,org.springframework.beans.factory.InitializingBean
public class HibernateCursorItemReader<T> extends AbstractItemCountingItemStreamItemReader<T> implements org.springframework.beans.factory.InitializingBean
ItemStreamReaderfor reading database records built on top of Hibernate. It executes the HQL query when initialized iterates over the result set asAbstractItemCountingItemStreamItemReader.read()method is called, returning an object corresponding to current row. The query can be set directly usingsetQueryString(String), a named query can be used bysetQueryName(String), or a query provider strategy can be supplied viasetQueryProvider(HibernateQueryProvider).The reader can be configured to use either
The implementation is not thread-safe.StatelessSessionsufficient for simple mappings without the need to cascade to associated objects or standard hibernateSessionfor more advanced mappings or when caching is desired. When stateful session is used it will be cleared in theupdate(ExecutionContext)method without being flushed (no data modifications are expected).- Author:
- Robert Kasanicky, Dave Syer
Constructor Summary
Constructors Constructor Description HibernateCursorItemReader()
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidafterPropertiesSet()protected voiddoClose()Close the cursor and hibernate session.protected voiddoOpen()Open hibernate session and create a forward-only cursor for the query.protected TdoRead()Read next item from input.protected voidjumpToItem(int itemIndex)Wind forward through the result set to the item requested.voidsetFetchSize(int fetchSize)Fetch size used internally by Hibernate to limit amount of data fetched from database per round trip.voidsetParameterValues(java.util.Map<java.lang.String,java.lang.Object> parameterValues)The parameter values to apply to a query (map of name:value).voidsetQueryName(java.lang.String queryName)A query name for an externalized query.voidsetQueryProvider(HibernateQueryProvider<T> queryProvider)A query provider.voidsetQueryString(java.lang.String queryString)A query string in HQL.voidsetSessionFactory(org.hibernate.SessionFactory sessionFactory)The Hibernate SessionFactory to use the create a session.voidsetUseStatelessSession(boolean useStatelessSession)Can be set only in uninitialized state.voidupdate(ExecutionContext executionContext)Update the context and clear the session if stateful.Methods inherited from class org.springframework.batch.item.support.AbstractItemCountingItemStreamItemReader
close, getCurrentItemCount, isSaveState, open, read, setCurrentItemCount, setMaxItemCount, setSaveState
Methods inherited from class org.springframework.batch.item.ItemStreamSupport
getExecutionContextKey, setExecutionContextName, setName
Method Detail
afterPropertiesSet
public void afterPropertiesSet() throws java.lang.Exception- Specified by:
afterPropertiesSetin interfaceorg.springframework.beans.factory.InitializingBean- Throws:
java.lang.Exception
setParameterValues
public void setParameterValues(java.util.Map<java.lang.String,java.lang.Object> parameterValues)
The parameter values to apply to a query (map of name:value).- Parameters:
parameterValues- the parameter values to set
setQueryName
public void setQueryName(java.lang.String queryName)
A query name for an externalized query. Either this or the {query stringor the {query providershould be set.- Parameters:
queryName- name of a hibernate named query
setFetchSize
public void setFetchSize(int fetchSize)
Fetch size used internally by Hibernate to limit amount of data fetched from database per round trip.- Parameters:
fetchSize- the fetch size to pass down to Hibernate
setQueryProvider
public void setQueryProvider(HibernateQueryProvider<T> queryProvider)
A query provider. Either this or the {query stringor the {query nameshould be set.- Parameters:
queryProvider- Hibernate query provider
setQueryString
public void setQueryString(java.lang.String queryString)
A query string in HQL. Either this or the {query provideror the {query nameshould be set.- Parameters:
queryString- HQL query string
setSessionFactory
public void setSessionFactory(org.hibernate.SessionFactory sessionFactory)
The Hibernate SessionFactory to use the create a session.- Parameters:
sessionFactory- theSessionFactoryto set
setUseStatelessSession
public void setUseStatelessSession(boolean useStatelessSession)
Can be set only in uninitialized state.- Parameters:
useStatelessSession-trueto useStatelessSessionfalseto use standard hibernateSession
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
doOpen
protected void doOpen() throws java.lang.ExceptionOpen hibernate session and create a forward-only cursor for the query.- Specified by:
doOpenin classAbstractItemCountingItemStreamItemReader<T>- Throws:
java.lang.Exception- Allows subclasses to throw checked exceptions for interpretation by the framework
update
public void update(ExecutionContext executionContext) throws ItemStreamException
Update the context and clear the session if stateful.- Specified by:
updatein interfaceItemStream- Overrides:
updatein classAbstractItemCountingItemStreamItemReader<T>- Parameters:
executionContext- the currentExecutionContext- Throws:
ItemStreamException- if there is a problem- See Also:
ItemStream.update(ExecutionContext)
jumpToItem
protected void jumpToItem(int itemIndex) throws java.lang.ExceptionWind forward through the result set to the item requested. Also clears the session every now and then (if stateful) to avoid memory problems. The frequency of session clearing is the larger of the fetch size (if set) and 100.- Overrides:
jumpToItemin classAbstractItemCountingItemStreamItemReader<T>- Parameters:
itemIndex- the first item to read- Throws:
java.lang.Exception- if there is a problem- See Also:
AbstractItemCountingItemStreamItemReader.jumpToItem(int)
doClose
protected void doClose() throws java.lang.ExceptionClose the cursor and hibernate session.- Specified by:
doClosein classAbstractItemCountingItemStreamItemReader<T>- Throws:
java.lang.Exception- Allows subclasses to throw checked exceptions for interpretation by the framework