@Target(value=TYPE)
@Retention(value=RUNTIME)
public @interface Entity
Entity
with Hibernate featuresModifier and Type | Optional Element and Description |
---|---|
boolean |
dynamicInsert
Needed column only in SQL on insert
|
boolean |
dynamicUpdate
Needed column only in SQL on update
|
boolean |
mutable
Deprecated.
use
Immutable |
OptimisticLockType |
optimisticLock
optimistic locking strategy
|
java.lang.String |
persister
persister of this entity, default is hibernate internal one
|
PolymorphismType |
polymorphism
polymorphism strategy for this entity
|
boolean |
selectBeforeUpdate
Do a select to retrieve the entity before any potential update
|
public abstract boolean mutable
Immutable
public abstract boolean dynamicInsert
public abstract boolean dynamicUpdate
public abstract boolean selectBeforeUpdate
public abstract PolymorphismType polymorphism
public abstract java.lang.String persister
public abstract OptimisticLockType optimisticLock
Copyright © 2013. All Rights Reserved.