collectionpersister.java

来自「hibernate3.2.6源码和jar包」· Java 代码 · 共 19 行

JAVA
19
字号
package org.hibernate.test.annotations.persister;import org.hibernate.MappingException;import org.hibernate.cache.CacheConcurrencyStrategy;import org.hibernate.cache.CacheException;import org.hibernate.cfg.Configuration;import org.hibernate.engine.SessionFactoryImplementor;import org.hibernate.mapping.Collection;import org.hibernate.persister.collection.OneToManyPersister;/** * @author Shawn Clowater */public class CollectionPersister extends OneToManyPersister {	public CollectionPersister(Collection collection, CacheConcurrencyStrategy cache, Configuration cfg,							   SessionFactoryImplementor factory) throws MappingException, CacheException {		super( collection, cache, cfg, factory );	}}

⌨️ 快捷键说明

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