📄 collectionpersister.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -