本文整理了Java中org.hibernate.annotations.Entity.selectBeforeUpdate()
方法的一些代码示例,展示了Entity.selectBeforeUpdate()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Entity.selectBeforeUpdate()
方法的具体详情如下:
包路径:org.hibernate.annotations.Entity
类名称:Entity
方法名:selectBeforeUpdate
暂无
代码示例来源:origin: hibernate/hibernate-orm
? ( hibAnn == null ? false : hibAnn.selectBeforeUpdate() )
: selectBeforeUpdateAnn.value();
代码示例来源:origin: org.hibernate/hibernate-annotations
private void bindHibernateAnnotation(org.hibernate.annotations.Entity hibAnn) {
if ( hibAnn != null ) {
dynamicInsert = hibAnn.dynamicInsert();
dynamicUpdate = hibAnn.dynamicUpdate();
optimisticLockType = hibAnn.optimisticLock();
selectBeforeUpdate = hibAnn.selectBeforeUpdate();
polymorphismType = hibAnn.polymorphism();
explicitHibernateEntityAnnotation = true;
//persister handled in bind
}
else {
//default values when the annotation is not there
dynamicInsert = false;
dynamicUpdate = false;
optimisticLockType = OptimisticLockType.VERSION;
polymorphismType = PolymorphismType.IMPLICIT;
selectBeforeUpdate = false;
}
}
代码示例来源:origin: org.hibernate/com.springsource.org.hibernate
private void bindHibernateAnnotation(org.hibernate.annotations.Entity hibAnn) {
if ( hibAnn != null ) {
dynamicInsert = hibAnn.dynamicInsert();
dynamicUpdate = hibAnn.dynamicUpdate();
optimisticLockType = hibAnn.optimisticLock();
selectBeforeUpdate = hibAnn.selectBeforeUpdate();
polymorphismType = hibAnn.polymorphism();
explicitHibernateEntityAnnotation = true;
//persister handled in bind
}
else {
//default values when the annotation is not there
dynamicInsert = false;
dynamicUpdate = false;
optimisticLockType = OptimisticLockType.VERSION;
polymorphismType = PolymorphismType.IMPLICIT;
selectBeforeUpdate = false;
}
}
代码示例来源:origin: org.hibernate/com.springsource.org.hibernate.core
private void bindHibernateAnnotation(org.hibernate.annotations.Entity hibAnn) {
if ( hibAnn != null ) {
dynamicInsert = hibAnn.dynamicInsert();
dynamicUpdate = hibAnn.dynamicUpdate();
optimisticLockType = hibAnn.optimisticLock();
selectBeforeUpdate = hibAnn.selectBeforeUpdate();
polymorphismType = hibAnn.polymorphism();
explicitHibernateEntityAnnotation = true;
//persister handled in bind
}
else {
//default values when the annotation is not there
dynamicInsert = false;
dynamicUpdate = false;
optimisticLockType = OptimisticLockType.VERSION;
polymorphismType = PolymorphismType.IMPLICIT;
selectBeforeUpdate = false;
}
}
代码示例来源:origin: jboss.jboss-embeddable-ejb3/hibernate-all
private void bindHibernateAnnotation(org.hibernate.annotations.Entity hibAnn) {
if ( hibAnn != null ) {
dynamicInsert = hibAnn.dynamicInsert();
dynamicUpdate = hibAnn.dynamicUpdate();
mutable = hibAnn.mutable();
optimisticLockType = hibAnn.optimisticLock();
persister = hibAnn.persister();
selectBeforeUpdate = hibAnn.selectBeforeUpdate();
polymorphismType = hibAnn.polymorphism();
explicitHibernateEntityAnnotation = true;
}
else {
//default values when the annotation is not there
dynamicInsert = false;
dynamicUpdate = false;
mutable = true;
optimisticLockType = OptimisticLockType.VERSION;
persister = "";
polymorphismType = PolymorphismType.IMPLICIT;
selectBeforeUpdate = false;
}
}
代码示例来源:origin: org.hibernate.orm/hibernate-core
? ( hibAnn == null ? false : hibAnn.selectBeforeUpdate() )
: selectBeforeUpdateAnn.value();
内容来源于网络,如有侵权,请联系作者删除!