⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 abstractlazyinitializer.java

📁 hibernate-distribution-3.3.1.GA-dist.zip源码
💻 JAVA
字号:
/* * Hibernate, Relational Persistence for Idiomatic Java * * Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as * indicated by the @author tags or express copyright attribution * statements applied by the authors.  All third-party contributions are * distributed under license by Red Hat Middleware LLC. * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU * Lesser General Public License, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License * for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this distribution; if not, write to: * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor * Boston, MA  02110-1301  USA * */package org.hibernate.proxy;import java.io.Serializable;import org.hibernate.HibernateException;import org.hibernate.LazyInitializationException;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;	/**	 * For serialization from the non-pojo initializers (HHH-3309)	 */	protected AbstractLazyInitializer() {	}		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 + -