当前位置: 首页>>代码示例>>Java>>正文


Java PersistentCollection.getKey方法代码示例

本文整理汇总了Java中org.hibernate.collection.spi.PersistentCollection.getKey方法的典型用法代码示例。如果您正苦于以下问题:Java PersistentCollection.getKey方法的具体用法?Java PersistentCollection.getKey怎么用?Java PersistentCollection.getKey使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.hibernate.collection.spi.PersistentCollection的用法示例。


在下文中一共展示了PersistentCollection.getKey方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: CollectionEntry

import org.hibernate.collection.spi.PersistentCollection; //导入方法依赖的package包/类
/**
 * For initialized detached collections
 */
public CollectionEntry(PersistentCollection collection, SessionFactoryImplementor factory) throws MappingException {
	// detached collections that get found + reattached
	// during flush shouldn't be ignored
	ignore = false;

	loadedKey = collection.getKey();
	setLoadedPersister( factory.getCollectionPersister( collection.getRole() ) );

	snapshot = collection.getStoredSnapshot();
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:14,代码来源:CollectionEntry.java

示例2: preFlush

import org.hibernate.collection.spi.PersistentCollection; //导入方法依赖的package包/类
public void preFlush(PersistentCollection collection) throws HibernateException {
	if ( loadedKey == null && collection.getKey() != null ) {
		loadedKey = collection.getKey();
	}

	boolean nonMutableChange = collection.isDirty() &&
			getLoadedPersister()!=null &&
			!getLoadedPersister().isMutable();
	if (nonMutableChange) {
		throw new HibernateException(
				"changed an immutable collection instance: " +
				MessageHelper.collectionInfoString( getLoadedPersister().getRole(), getLoadedKey() )
			);
	}

	dirty(collection);

	if ( LOG.isDebugEnabled() && collection.isDirty() && getLoadedPersister() != null ) {
		LOG.debugf( "Collection dirty: %s",
				MessageHelper.collectionInfoString( getLoadedPersister().getRole(), getLoadedKey() ) );
	}

	setDoupdate(false);
	setDoremove(false);
	setDorecreate(false);
	setReached(false);
	setProcessed(false);
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:29,代码来源:CollectionEntry.java

示例3: addUninitializedDetachedCollection

import org.hibernate.collection.spi.PersistentCollection; //导入方法依赖的package包/类
@Override
public void addUninitializedDetachedCollection(CollectionPersister persister, PersistentCollection collection) {
	final CollectionEntry ce = new CollectionEntry( persister, collection.getKey() );
	addCollection( collection, ce, collection.getKey() );
	if ( persister.getBatchSize() > 1 ) {
		getBatchFetchQueue().addBatchLoadableCollection( collection, ce );
	}
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:9,代码来源:StatefulPersistenceContext.java

示例4: isCollectionSnapshotValid

import org.hibernate.collection.spi.PersistentCollection; //导入方法依赖的package包/类
private static boolean isCollectionSnapshotValid(PersistentCollection snapshot) {
	return snapshot != null &&
			snapshot.getRole() != null &&
			snapshot.getKey() != null;
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:6,代码来源:ProxyVisitor.java


注:本文中的org.hibernate.collection.spi.PersistentCollection.getKey方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。