Class NaturalIdLoadAccessImpl<T>
- All Implemented Interfaces:
NaturalIdLoadOptions
,NaturalIdLoadAccess<T>
-
Field Summary
Fields inherited from interface org.hibernate.loader.ast.spi.NaturalIdLoadOptions
NONE
-
Constructor Summary
ConstructorsConstructorDescriptionNaturalIdLoadAccessImpl
(LoadAccessContext context, EntityMappingType entityDescriptor) -
Method Summary
Modifier and TypeMethodDescriptiondisableFetchProfile
(String profileName) Customize the associations fetched by specifying a fetch profile that should be disabled during this operation.enableFetchProfile
(String profileName) Customize the associations fetched by specifying a fetch profile that should be enabled during this operation.final T
Return the persistent instance with the full natural id specified by previous calls toNaturalIdLoadAccess.using(jakarta.persistence.metamodel.SingularAttribute<? super T, X>, X)
.final T
load()
Return the persistent instance with the full natural id specified by previous calls toNaturalIdLoadAccess.using(jakarta.persistence.metamodel.SingularAttribute<? super T, X>, X)
, ornull
if there is no such persistent instance.Just likeNaturalIdLoadAccess.load()
, except that here anOptional
is returned.setSynchronizationEnabled
(boolean synchronizationEnabled) Determines if cached natural id cross-references are synchronized before query execution with unflushed modifications made in memory to mutable natural ids.<X> NaturalIdLoadAccess<T>
using
(SingularAttribute<? super T, X> attribute, X value) Add a@NaturalId
attribute value in a typesafe way.Add a@NaturalId
attribute value.Set multiple@NaturalId
attribute values at once.with
(RootGraph<T> graph, GraphSemantic semantic) Customize the associations fetched by specifying an entity graph, and how it should be interpreted.with
(LockOptions lockOptions) Specify the lock options to use when querying the database.Methods inherited from class org.hibernate.loader.internal.BaseNaturalIdLoadAccessImpl
doGetReference, doLoad, entityPersister, getContext, getEntityDescriptor, getIdentifierLoadAccess, getLockOptions, isSynchronizationEnabled, performAnyNeededCrossReferenceSynchronizations, synchronizationEnabled
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.hibernate.NaturalIdLoadAccess
withFetchGraph, withLoadGraph
-
Constructor Details
-
NaturalIdLoadAccessImpl
-
-
Method Details
-
with
Description copied from interface:NaturalIdLoadAccess
Specify the lock options to use when querying the database.- Specified by:
with
in interfaceNaturalIdLoadAccess<T>
- Overrides:
with
in classBaseNaturalIdLoadAccessImpl<T>
- Parameters:
lockOptions
- The lock options to use.- Returns:
this
, for method chaining
-
using
Description copied from interface:NaturalIdLoadAccess
Add a@NaturalId
attribute value in a typesafe way.- Specified by:
using
in interfaceNaturalIdLoadAccess<T>
- Parameters:
attribute
- A typesafe reference to an attribute of the entity that is annotated@NaturalId
value
- The value of the attribute- Returns:
this
, for method chaining
-
using
Description copied from interface:NaturalIdLoadAccess
Add a@NaturalId
attribute value.- Specified by:
using
in interfaceNaturalIdLoadAccess<T>
- Parameters:
attributeName
- The name of an attribute of the entity that is annotated@NaturalId
value
- The value of the attribute- Returns:
this
, for method chaining
-
using
Description copied from interface:NaturalIdLoadAccess
Set multiple@NaturalId
attribute values at once. An even number of arguments is expected, with each attribute name followed by its value, for example:Book book = session.byNaturalId(Book.class) .using(Map.of(Book_.ISBN, isbn, Book_.PRINTING, printing)) .load();
- Specified by:
using
in interfaceNaturalIdLoadAccess<T>
- Returns:
this
, for method chaining
-
setSynchronizationEnabled
Description copied from interface:NaturalIdLoadAccess
Determines if cached natural id cross-references are synchronized before query execution with unflushed modifications made in memory to mutable natural ids.By default, every cached cross-reference is updated to reflect any modification made in memory.
Here "synchronization" means updating the natural id to primary key cross-reference maintained by the session. When enabled, before performing the lookup, Hibernate will check all entities associated with the session of the given type to determine if any natural id values have changed and, if so, update the cross-references.
There's some cost associated with this synchronization, so if it's completely certain the no natural ids have been modified, synchronization may be safely disabled to avoid that cost. Disabling this setting when natural id values have been modified may lead to incorrect results.
- Specified by:
setSynchronizationEnabled
in interfaceNaturalIdLoadAccess<T>
- Parameters:
synchronizationEnabled
- Should synchronization be performed?true
indicates synchronization will be performed;false
indicates it will be circumvented.- Returns:
this
, for method chaining
-
getReference
Description copied from interface:NaturalIdLoadAccess
Return the persistent instance with the full natural id specified by previous calls toNaturalIdLoadAccess.using(jakarta.persistence.metamodel.SingularAttribute<? super T, X>, X)
. This method might return a proxied instance that is initialized on-demand, when a non-identifier method is accessed.You should not use this method to determine if an instance exists; to check for existence, use
NaturalIdLoadAccess.load()
instead. Use this method only to retrieve an instance that you assume exists, where non-existence would be an actual error.- Specified by:
getReference
in interfaceNaturalIdLoadAccess<T>
- Returns:
- the persistent instance or proxy
-
load
Description copied from interface:NaturalIdLoadAccess
Return the persistent instance with the full natural id specified by previous calls toNaturalIdLoadAccess.using(jakarta.persistence.metamodel.SingularAttribute<? super T, X>, X)
, ornull
if there is no such persistent instance. If the instance is already associated with the session, return that instance, initializing it if needed. This method never returns an uninitialized instance.- Specified by:
load
in interfaceNaturalIdLoadAccess<T>
- Returns:
- The persistent instance or
null
-
loadOptional
Description copied from interface:NaturalIdLoadAccess
Just likeNaturalIdLoadAccess.load()
, except that here anOptional
is returned.- Specified by:
loadOptional
in interfaceNaturalIdLoadAccess<T>
- Returns:
- The persistent instance, if one, as an
Optional
-
with
Description copied from interface:NaturalIdLoadAccess
Customize the associations fetched by specifying an entity graph, and how it should be interpreted.- Specified by:
with
in interfaceNaturalIdLoadAccess<T>
- Overrides:
with
in classBaseNaturalIdLoadAccessImpl<T>
-
enableFetchProfile
Description copied from interface:NaturalIdLoadAccess
Customize the associations fetched by specifying a fetch profile that should be enabled during this operation.This allows the session-level fetch profiles to be temporarily overridden.
- Specified by:
enableFetchProfile
in interfaceNaturalIdLoadAccess<T>
- Overrides:
enableFetchProfile
in classBaseNaturalIdLoadAccessImpl<T>
-
disableFetchProfile
Description copied from interface:NaturalIdLoadAccess
Customize the associations fetched by specifying a fetch profile that should be disabled during this operation.This allows the session-level fetch profiles to be temporarily overridden.
- Specified by:
disableFetchProfile
in interfaceNaturalIdLoadAccess<T>
- Overrides:
disableFetchProfile
in classBaseNaturalIdLoadAccessImpl<T>
-