org.hibernate.persister.entity.NamedQueryLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-core Show documentation
Show all versions of hibernate-core Show documentation
JPMS Module-Info's for a few of the Jakarta Libraries just until they add them in themselves
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or .
*/
package org.hibernate.persister.entity;
import java.io.Serializable;
import org.hibernate.FlushMode;
import org.hibernate.LockOptions;
import org.hibernate.engine.spi.SharedSessionContractImplementor;
import org.hibernate.internal.CoreLogging;
import org.hibernate.internal.CoreMessageLogger;
import org.hibernate.loader.entity.UniqueEntityLoader;
import org.hibernate.query.internal.AbstractProducedQuery;
/**
* Not really a Loader, just a wrapper around a named query. Used when the metadata has named a query to use for
* loading an entity (using {@link org.hibernate.annotations.Loader} or {@code }).
*
* @author Gavin King
* @author Steve Ebersole
*/
public final class NamedQueryLoader implements UniqueEntityLoader {
private static final CoreMessageLogger LOG = CoreLogging.messageLogger( NamedQueryLoader.class );
private final String queryName;
private final EntityPersister persister;
private final int position;
/**
* Constructs the NamedQueryLoader
*
* @param queryName The name of the named query to use
* @param persister The corresponding persister for the entity we are loading
*/
public NamedQueryLoader(String queryName, EntityPersister persister) {
super();
this.queryName = queryName;
this.persister = persister;
this.position = persister.getFactory().getSessionFactoryOptions().jdbcStyleParamsZeroBased()
? 0
: 1;
}
@Override
public Object load(Serializable id, Object optionalObject, SharedSessionContractImplementor session, LockOptions lockOptions) {
return load( id, optionalObject, session, (Boolean) null );
}
@Override
public Object load(Serializable id, Object optionalObject, SharedSessionContractImplementor session, LockOptions lockOptions, Boolean readOnly) {
if ( lockOptions != null ) {
LOG.debug( "Ignoring lock-options passed to named query loader" );
}
return load( id, optionalObject, session, readOnly );
}
@Override
public Object load(Serializable id, Object optionalObject, SharedSessionContractImplementor session) {
return load( id, optionalObject, session, (Boolean) null );
}
@Override
public Object load(Serializable id, Object optionalObject, SharedSessionContractImplementor session, Boolean readOnly) {
LOG.debugf("Loading entity: %s using named query: %s", persister.getEntityName(), queryName);
// IMPL NOTE: essentially we perform the named query (which loads the entity into the PC), and then
// do an internal lookup of the entity from the PC.
final AbstractProducedQuery query = (AbstractProducedQuery) session.getNamedQuery( queryName );
if ( query.getParameterMetadata().hasNamedParameters() ) {
query.setParameter( query.getNamedParameters()[0], id, persister.getIdentifierType() );
}
else {
query.setParameter( position, id, persister.getIdentifierType() );
}
query.setOptionalId( id );
query.setOptionalEntityName( persister.getEntityName() );
query.setOptionalObject( optionalObject );
query.setFlushMode( FlushMode.MANUAL );
if ( readOnly != null ) {
query.setReadOnly( readOnly );
}
query.list();
// now look up the object we are really interested in!
// (this lets us correctly handle proxies and multi-row or multi-column queries)
return session.getPersistenceContextInternal().getEntity( session.generateEntityKey( id, persister ) );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy