org.hibernate.annotations.Entity.optimisticLock()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(3.1k)|赞(0)|评价(0)|浏览(114)

本文整理了Java中org.hibernate.annotations.Entity.optimisticLock()方法的一些代码示例,展示了Entity.optimisticLock()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Entity.optimisticLock()方法的具体详情如下:
包路径:org.hibernate.annotations.Entity
类名称:Entity
方法名:optimisticLock

Entity.optimisticLock介绍

暂无

代码示例

代码示例来源:origin: hibernate/hibernate-orm

? ( hibAnn == null ? OptimisticLockType.VERSION : hibAnn.optimisticLock() )
: optimisticLockingAnn.type();

代码示例来源: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 ? OptimisticLockType.VERSION : hibAnn.optimisticLock() )
: optimisticLockingAnn.type();

相关文章