接口 HibernateQueryProvider<T>
public interface HibernateQueryProvider<T>
Interface defining the functionality to be provided for generating queries for use with Hibernate
ItemReaders or other custom built artifacts.- 从以下版本开始:
- 2.1
- 作者:
- Anatoly Polinsky, Dave Syer
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 org.hibernate.query.Query<T>createQuery()Create the query object which type will be determined by the underline implementation (e.g.voidsetSession(org.hibernate.Session session)Inject aSessionthat can be used as a factory for queries.voidsetStatelessSession(org.hibernate.StatelessSession session)Inject aStatelessSessionthat can be used as a factory for queries.
方法详细资料
createQuery
org.hibernate.query.Query<T> createQuery()
Create the query object which type will be determined by the underline implementation (e.g. Hibernate, JPA, etc.)
- 返回:
- created query
setSession
void setSession(org.hibernate.Session session)
Inject a
Sessionthat can be used as a factory for queries. The state of the session is controlled by the caller (i.e. it should be closed if necessary).Use either this method or
setStatelessSession(StatelessSession)- 参数:
session- theSessionto set
setStatelessSession
void setStatelessSession(org.hibernate.StatelessSession session)
Inject a
StatelessSessionthat can be used as a factory for queries. The state of the session is controlled by the caller (i.e. it should be closed if necessary).Use either this method or
setSession(Session)- 参数:
session- theStatelessSessionto set