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

📄 onreplicatevisitor.java

📁 hibernate-3.0.5 中文文档
💻 JAVA
字号:
//$Id: OnReplicateVisitor.java,v 1.6 2005/05/03 19:47:45 oneovthafew Exp $package org.hibernate.event.def;import java.io.Serializable;import org.hibernate.HibernateException;import org.hibernate.collection.PersistentCollection;import org.hibernate.engine.SessionImplementor;import org.hibernate.persister.collection.CollectionPersister;import org.hibernate.type.CollectionType;/** * When an entity is passed to replicate(), and there is an existing row, we must  * inspect all its collections and * 1. associate any uninitialized PersistentCollections with this session * 2. associate any initialized PersistentCollections with this session, using the *    existing snapshot * 3. execute a collection removal (SQL DELETE) for each null collection property *    or "new" collection * * @author Gavin King */public class OnReplicateVisitor extends ReattachVisitor {		private boolean isUpdate;		OnReplicateVisitor(SessionImplementor session, Serializable key, boolean isUpdate) {		super(session, key);		this.isUpdate = isUpdate;	}	Object processCollection(Object collection, CollectionType type)		throws HibernateException {				if (collection==CollectionType.UNFETCHED_COLLECTION) return null;		SessionImplementor session = getSession();		Serializable key = getKey();		CollectionPersister persister = session.getFactory().getCollectionPersister( type.getRole() );		if (isUpdate) removeCollection(persister, key, session);		if ( collection!=null && (collection instanceof PersistentCollection) ) {			PersistentCollection wrapper = (PersistentCollection) collection;			wrapper.setCurrentSession(session);			if ( wrapper.wasInitialized() ) {				session.getPersistenceContext().addNewCollection(wrapper, persister);			}			else {				reattachCollection( wrapper, wrapper.getCollectionSnapshot() );			}		}		else {			// otherwise a null or brand new collection			// this will also (inefficiently) handle arrays, which			// have no snapshot, so we can't do any better			//processArrayOrNewCollection(collection, type);		}		return null;	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -