T
- result typeQ
- concrete subtypepublic abstract class AbstractHibernateQuery<T,Q extends AbstractHibernateQuery<T,Q>> extends JPAQueryBase<T,Q>
Modifier and Type | Field and Description |
---|---|
protected Boolean |
cacheable |
protected String |
cacheRegion |
protected String |
comment |
protected int |
fetchSize |
protected org.hibernate.FlushMode |
flushMode |
protected Map<Path<?>,org.hibernate.LockMode> |
lockModes |
protected Boolean |
readOnly |
protected int |
timeout |
queryMixin
MDC_PARAMETERS, MDC_QUERY
Constructor and Description |
---|
AbstractHibernateQuery(org.hibernate.Session session) |
AbstractHibernateQuery(SessionHolder session,
JPQLTemplates patterns,
QueryMetadata metadata) |
Modifier and Type | Method and Description |
---|---|
protected void |
cleanupMDC() |
Q |
clone()
Clone the state of this query to a new instance
|
protected void |
clone(Q query) |
Q |
clone(org.hibernate.Session session)
Clone the state of this query to a new instance with the given Session
|
protected abstract Q |
clone(SessionHolder sessionHolder) |
Q |
clone(org.hibernate.StatelessSession session)
Clone the state of this query to a new instance with the given StatelessSession
|
org.hibernate.Query |
createQuery()
Expose the original Hibernate query for the given projection
|
protected JPQLSerializer |
createSerializer() |
List<T> |
fetch()
Get the projection as a typed List
|
long |
fetchCount()
Get the count of matched elements
|
T |
fetchOne()
Get the projection as a unique result or null if no result is found
|
QueryResults<T> |
fetchResults()
Get the projection in
QueryResults form |
com.mysema.commons.lang.CloseableIterator<T> |
iterate()
Return the query results as an Iterator.
|
protected void |
logQuery(String queryString,
Map<Object,String> parameters) |
protected void |
reset() |
org.hibernate.ScrollableResults |
scroll(org.hibernate.ScrollMode mode)
Return the query results as ScrollableResults.
|
Q |
setCacheable(boolean cacheable)
Enable caching of this query result set.
|
Q |
setCacheRegion(String cacheRegion)
Set the name of the cache region.
|
Q |
setComment(String comment)
Add a comment to the generated SQL.
|
Q |
setFetchSize(int fetchSize)
Set a fetchJoin size for the underlying JDBC query.
|
Q |
setFlushMode(org.hibernate.FlushMode flushMode)
Override the current session flush mode, just for this query.
|
Q |
setLockMode(Path<?> path,
org.hibernate.LockMode lockMode)
Set the lock mode for the given path.
|
Q |
setReadOnly(boolean readOnly)
Entities retrieved by this query will be loaded in
a read-only mode where Hibernate will never dirty-check
them or make changes persistent.
|
Q |
setTimeout(int timeout)
Set a timeout for the underlying JDBC query.
|
fetchAll, fetchJoin, from, from, from, getTemplates, innerJoin, innerJoin, innerJoin, innerJoin, innerJoin, innerJoin, join, join, join, join, join, join, leftJoin, leftJoin, leftJoin, leftJoin, leftJoin, leftJoin, on, on, rightJoin, rightJoin, rightJoin, rightJoin, rightJoin, rightJoin, serialize, serialize, toString
accept, contains, contains, eq, eq, exists, getMetadata, getType, goe, goe, gt, gt, hashCode, in, in, isNotNull, isNull, loe, loe, lt, lt, ne, ne, notExists
equals, fetchFirst, transform, uniqueResult
distinct, groupBy, groupBy, having, having, limit, offset, orderBy, orderBy, restrict, set, where, where
finalize, getClass, notify, notifyAll, wait, wait, wait
transform
fetchFirst
distinct, limit, offset, orderBy, restrict, set
where
contains, contains, eq, eq, exists, goe, goe, gt, gt, in, in, isNotNull, isNull, loe, loe, lt, lt, ne, ne, notExists
getMetadata
accept, getType
protected int fetchSize
@Nullable protected org.hibernate.FlushMode flushMode
protected int timeout
public AbstractHibernateQuery(org.hibernate.Session session)
public AbstractHibernateQuery(SessionHolder session, JPQLTemplates patterns, QueryMetadata metadata)
public long fetchCount()
Fetchable
public org.hibernate.Query createQuery()
public com.mysema.commons.lang.CloseableIterator<T> iterate()
public List<T> fetch()
Fetchable
fetch
in interface Fetchable<T>
fetch
in class FetchableQueryBase<T,Q extends AbstractHibernateQuery<T,Q>>
public QueryResults<T> fetchResults()
Fetchable
QueryResults
formprotected void cleanupMDC()
protected void reset()
reset
in class JPAQueryBase<T,Q extends AbstractHibernateQuery<T,Q>>
public org.hibernate.ScrollableResults scroll(org.hibernate.ScrollMode mode)
mode
- scroll modepublic Q setCacheable(boolean cacheable)
cacheable
- Should the query results be cacheable?public Q setCacheRegion(String cacheRegion)
cacheRegion
- the name of a query cache region, or null
for the default query cachepublic Q setComment(String comment)
comment
- commentpublic Q setFetchSize(int fetchSize)
fetchSize
- the fetchJoin sizepublic Q setLockMode(Path<?> path, org.hibernate.LockMode lockMode)
public Q setFlushMode(org.hibernate.FlushMode flushMode)
public Q setReadOnly(boolean readOnly)
public Q setTimeout(int timeout)
timeout
- the timeout in secondspublic T fetchOne()
Fetchable
protected JPQLSerializer createSerializer()
createSerializer
in class JPAQueryBase<T,Q extends AbstractHibernateQuery<T,Q>>
protected void clone(Q query)
protected abstract Q clone(SessionHolder sessionHolder)
public Q clone(org.hibernate.Session session)
session
- sessionpublic Q clone(org.hibernate.StatelessSession session)
session
- sessionpublic Q clone()
clone
in class JPAQueryBase<T,Q extends AbstractHibernateQuery<T,Q>>
Copyright © 2007–2016 Querydsl. All rights reserved.