接口的使用
org.hibernate.persister.entity.Lockable
-
使用Lockable的程序包 程序包 说明 org.hibernate.dialect This package abstracts the SQL dialect of the underlying database.org.hibernate.dialect.lock Support for Dialect-specific locking strategiesorg.hibernate.persister.entity This package abstracts persistence mechanisms for entities, and defines the Hibernate runtime metamodel. -
-
org.hibernate.dialect中Lockable的使用
参数类型为Lockable的org.hibernate.dialect中的方法 修饰符和类型 方法 说明 LockingStrategyCache71Dialect. getLockingStrategy(Lockable lockable, LockMode lockMode)LockingStrategyDialect. getLockingStrategy(Lockable lockable, LockMode lockMode)Get a strategy instance which knows how to acquire a database-level lock of the specified mode for this dialect.LockingStrategyFrontBaseDialect. getLockingStrategy(Lockable lockable, LockMode lockMode)LockingStrategyHSQLDialect. getLockingStrategy(Lockable lockable, LockMode lockMode)For HSQLDB 2.0, this is a copy of the base class implementation.LockingStrategyMckoiDialect. getLockingStrategy(Lockable lockable, LockMode lockMode)LockingStrategyPointbaseDialect. getLockingStrategy(Lockable lockable, LockMode lockMode)LockingStrategyRDMSOS2200Dialect. getLockingStrategy(Lockable lockable, LockMode lockMode)LockingStrategyTimesTenDialect. getLockingStrategy(Lockable lockable, LockMode lockMode) -
org.hibernate.dialect.lock中Lockable的使用
返回Lockable的org.hibernate.dialect.lock中的方法 修饰符和类型 方法 说明 protected LockableAbstractSelectLockingStrategy. getLockable()参数类型为Lockable的org.hibernate.dialect.lock中的构造器 构造器 说明 AbstractSelectLockingStrategy(Lockable lockable, LockMode lockMode)OptimisticForceIncrementLockingStrategy(Lockable lockable, LockMode lockMode)Construct locking strategy.OptimisticLockingStrategy(Lockable lockable, LockMode lockMode)Construct locking strategy.PessimisticForceIncrementLockingStrategy(Lockable lockable, LockMode lockMode)Construct locking strategy.PessimisticReadSelectLockingStrategy(Lockable lockable, LockMode lockMode)Construct a locking strategy based on SQL SELECT statements.PessimisticReadUpdateLockingStrategy(Lockable lockable, LockMode lockMode)Construct a locking strategy based on SQL UPDATE statements.PessimisticWriteSelectLockingStrategy(Lockable lockable, LockMode lockMode)Construct a locking strategy based on SQL SELECT statements.PessimisticWriteUpdateLockingStrategy(Lockable lockable, LockMode lockMode)Construct a locking strategy based on SQL UPDATE statements.SelectLockingStrategy(Lockable lockable, LockMode lockMode)Construct a locking strategy based on SQL SELECT statements.UpdateLockingStrategy(Lockable lockable, LockMode lockMode)Construct a locking strategy based on SQL UPDATE statements. -
org.hibernate.persister.entity中Lockable的使用
实现Lockable的org.hibernate.persister.entity中的类 修饰符和类型 类 说明 classAbstractEntityPersisterBasic functionality for persisting an entity via JDBC through either generated or custom SQLclassJoinedSubclassEntityPersisterAn EntityPersister implementing the normalized "table-per-subclass" mapping strategyclassSingleTableEntityPersisterThe default implementation of the EntityPersister interface.classUnionSubclassEntityPersisterImplementation of the "table-per-concrete-class" or "roll-down" mapping strategy for an entity and its inheritance hierarchy.
-