Interface HibernateHints
- All Known Subinterfaces:
AvailableHints
Some hints are only effective in certain scenarios, which is noted on each constant's documentation.
- API Note:
- The stringly-typed hints defined here correspond to typesafe operations of Hibernate's native APIs, and should not be used unless portability between JPA implementations is of very great importance.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringHint to set the batch size for batch fetching for a givenEntityManager.static final StringHint for specifying theCacheModeto use.static final StringHint for specifying the region of the query cache into which the results should be stored.static final StringHint for specifying whether results from a query should be stored in the query cache.static final StringWhether to treat aProcedureCallorStoredProcedureQueryas a call to a function rather than a call to a procedure.static final StringHint for specifying a database comment to be appended to the SQL statement sent to the database.static final StringHint to enable subselect fetching for a givenEntityManager.static final StringHint to enable a fetch profile for a givenEntityManager.static final StringHint for specifying a JDBC fetch size to be applied to the statement.static final Stringstatic final StringHint to enable or disable the follow-on locking mechanism provided byDialect.useFollowOnLocking(java.lang.String, org.hibernate.query.spi.QueryOptions).static final StringHint to set the batch size for JDBC batching for a givenEntityManager.static final StringHint for specifying the lock mode to apply to the results of a native query.static final StringHint for specifying the query spaces that affect the results of a native query.static final StringHint for specifying a query hint to be appended to the SQL statement sent to the database.static final StringHint to enable or disable the query plan caching.static final StringHint for specifying that objects loaded into the persistence context as a result of a query should be associated with the persistence context in read-only mode.static final StringHint for specifying the tenant id to use when creating anEntityManager.static final StringHint for specifying a query timeout, in seconds.
-
Field Details
-
HINT_FLUSH_MODE
-
HINT_TIMEOUT
Hint for specifying a query timeout, in seconds. -
HINT_READ_ONLY
Hint for specifying that objects loaded into the persistence context as a result of a query should be associated with the persistence context in read-only mode. -
HINT_FETCH_SIZE
Hint for specifying a JDBC fetch size to be applied to the statement. -
HINT_CACHEABLE
Hint for specifying whether results from a query should be stored in the query cache. -
HINT_CACHE_REGION
Hint for specifying the region of the query cache into which the results should be stored.- See Also:
- Implementation Specification:
- No effect unless
HINT_CACHEABLEis set totrue
-
HINT_CACHE_MODE
Hint for specifying theCacheModeto use.- See Also:
- Implementation Specification:
- No effect unless
HINT_CACHEABLEis set totrue
-
HINT_COMMENT
Hint for specifying a database comment to be appended to the SQL statement sent to the database.- See Also:
- Implementation Specification:
- Not valid for
ProcedureCall, nor forStoredProcedureQuery.
-
HINT_FOLLOW_ON_LOCKING
Hint to enable or disable the follow-on locking mechanism provided byDialect.useFollowOnLocking(java.lang.String, org.hibernate.query.spi.QueryOptions).A value of
trueenables follow-on-locking, whereas a value offalsedisables it. If the value isnull, the dialect itself will determine whether follow-on locking is used.- Since:
- 5.2
- See Also:
-
HINT_NATIVE_LOCK_MODE
Hint for specifying the lock mode to apply to the results of a native query.Accepts either a
LockModeTypeor aLockMode.- See Also:
- API Note:
- While Hibernate supports applying a lock mode to a
native query, the JPA specification requires that
Query.setLockMode(jakarta.persistence.LockModeType)throw anIllegalStateExceptionin this scenario.
-
HINT_NATIVE_SPACES
Hint for specifying the query spaces that affect the results of a native query.Passed value can be any of:
- a
Listof the spaces, - an array of the spaces, or
- a string with a whitespace-separated list of the spaces.
Typically, these are the names of tables which are referenced by the query.
- a
-
HINT_CALLABLE_FUNCTION
Whether to treat aProcedureCallorStoredProcedureQueryas a call to a function rather than a call to a procedure.- See Also:
-
HINT_TENANT_ID
Hint for specifying the tenant id to use when creating anEntityManager. -
HINT_FETCH_PROFILE
Hint to enable a fetch profile for a givenEntityManager. -
HINT_ENABLE_SUBSELECT_FETCH
Hint to enable subselect fetching for a givenEntityManager. -
HINT_BATCH_FETCH_SIZE
Hint to set the batch size for batch fetching for a givenEntityManager. -
HINT_JDBC_BATCH_SIZE
Hint to set the batch size for JDBC batching for a givenEntityManager. -
HINT_QUERY_PLAN_CACHEABLE
Hint to enable or disable the query plan caching.By default, query plan caching is enabled for HQL queries and immutable criteria queries i.e. created with
QuerySettings.CRITERIA_COPY_TREE. Query plan caching can be disabled for any query by setting this property tofalse. Query plan caching can be enabled for mutable criteria queries by setting this property totrue.Setting this property to
truefor mutable criteria queries can lead to cache trashing, because the query plan is cached based on a copy of the criteria query. This is mostly useful when the sameQueryshould be executed multiple times, but with different parameter values to avoid re-translation of the criteria query.Note that setting this property to
truedoes not override the basic safety measures of Hibernate. Hibernate will never cache query plans that are not safe to cache, regardless of the value of this property.- Since:
- 6.3
- See Also:
-
HINT_QUERY_DATABASE
Hint for specifying a query hint to be appended to the SQL statement sent to the database.
-