本文整理了Java中org.hibernate.event.spi.EventSource.get()
方法的一些代码示例,展示了EventSource.get()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。EventSource.get()
方法的具体详情如下:
包路径:org.hibernate.event.spi.EventSource
类名称:EventSource
方法名:get
[英]Get the ActionQueue for this session
[中]获取此会话的操作队列
代码示例来源:origin: hibernate/hibernate-orm
final Object result = source.get( entityName, clonedIdentifier );
source.getLoadQueryInfluencers().setInternalFetchProfile( previousFetchProfile );
代码示例来源:origin: org.jboss.seam/jboss-seam
public Object get(Class clazz, Serializable id, LockOptions lockOptions) throws HibernateException
{
return ((EventSource) delegate).get(clazz, id, lockOptions);
}
代码示例来源:origin: org.hibernate/com.springsource.org.hibernate.core
final Object result = source.get(entityName, clonedIdentifier);
source.setFetchProfile(previousFetchProfile);
代码示例来源:origin: org.hibernate.orm/hibernate-core
result = source.get( entityName, clonedIdentifier );
代码示例来源:origin: org.hibernate/com.springsource.org.hibernate
final Object result = source.get(entityName, clonedIdentifier);
source.setFetchProfile(previousFetchProfile);
代码示例来源:origin: org.jboss.seam/jboss-seam
public Object get(String entityName, Serializable id, LockOptions lockOptions) throws HibernateException
{
return ((EventSource) delegate).get(entityName, id, lockOptions);
}
内容来源于网络,如有侵权,请联系作者删除!