📄 abstractlazyinitializer.java
字号:
package org.hibernate.proxy;import java.io.Serializable;import org.hibernate.HibernateException;import org.hibernate.LazyInitializationException;import org.hibernate.ObjectNotFoundException;import org.hibernate.engine.EntityKey;import org.hibernate.engine.SessionImplementor;/** * Convenience base class for lazy initialization handlers. Centralizes the * basic plumbing of doing lazy initialization freeing subclasses to * acts as essentially adapters to their intended entity mode and/or * proxy generation strategy. * * @author Gavin King */public abstract class AbstractLazyInitializer implements LazyInitializer { private Object target; private boolean initialized; private String entityName; private Serializable id; private transient SessionImplementor session; private boolean unwrap; protected AbstractLazyInitializer(String entityName, Serializable id, SessionImplementor session) { this.id = id; this.session = session; this.entityName = entityName; } public final Serializable getIdentifier() { return id; } public final void setIdentifier(Serializable id) { this.id = id; } public final String getEntityName() { return entityName; } public final boolean isUninitialized() { return !initialized; } public final SessionImplementor getSession() { return session; } public final void initialize() throws HibernateException { if (!initialized) { if ( session==null ) { throw new LazyInitializationException("could not initialize proxy - no Session"); } else if ( !session.isOpen() ) { throw new LazyInitializationException("could not initialize proxy - the owning Session was closed"); } else if ( !session.isConnected() ) { throw new LazyInitializationException("could not initialize proxy - the owning Session is disconnected"); } else { target = session.immediateLoad(entityName, id); initialized = true; checkTargetState(); } } else { checkTargetState(); } } private void checkTargetState() { if ( !unwrap ) { if ( target == null ) { getSession().getFactory().getEntityNotFoundDelegate().handleEntityNotFound( entityName, id ); } } } public final void setSession(SessionImplementor s) throws HibernateException { if (s!=session) { if ( isConnectedToSession() ) { //TODO: perhaps this should be some other RuntimeException... throw new HibernateException("illegally attempted to associate a proxy with two open Sessions"); } else { session = s; } } } protected final boolean isConnectedToSession() { return session!=null && session.isOpen() && session.getPersistenceContext().containsProxy(this); } public final void setImplementation(Object target) { this.target = target; initialized = true; } /** * Return the underlying persistent object, initializing if necessary */ public final Object getImplementation() { initialize(); return target; } /** * Return the underlying persistent object in the given <tt>Session</tt>, or null, * do not initialize the proxy */ public final Object getImplementation(SessionImplementor s) throws HibernateException { final EntityKey entityKey = new EntityKey( getIdentifier(), s.getFactory().getEntityPersister( getEntityName() ), s.getEntityMode() ); return s.getPersistenceContext().getEntity( entityKey ); } protected final Object getTarget() { return target; } public boolean isUnwrap() { return unwrap; } public void setUnwrap(boolean unwrap) { this.unwrap = unwrap; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -