@groovy.transform.CompileStatic abstract class AbstractHibernateGormInstanceApi<D> extends org.grails.datastore.gorm.GormInstanceApi<D>
Abstract extension of the org.grails.datastore.gorm.GormInstanceApi class that provides common logic shared by Hibernate 3 and Hibernate 4
Modifiers | Name | Description |
---|---|---|
protected static java.lang.Object[] |
EMPTY_ARRAY |
|
protected java.lang.ClassLoader |
classLoader |
|
protected IHibernateTemplate |
hibernateTemplate |
|
protected org.grails.datastore.mapping.proxy.ProxyHandler |
proxyHandler |
|
protected org.hibernate.SessionFactory |
sessionFactory |
Type | Name and description |
---|---|
boolean |
autoFlush |
static java.lang.ThreadLocal<java.lang.Boolean> |
insertActiveThreadLocal When a domain instance is saved without validation, we put it into this thread local variable. |
Constructor and description |
---|
protected AbstractHibernateGormInstanceApi(java.lang.Class<D> persistentClass, AbstractHibernateDatastore datastore, java.lang.ClassLoader classLoader, IHibernateTemplate hibernateTemplate) |
Type Params | Return Type | Name and description |
---|---|---|
|
D |
attach(D instance) |
|
void |
delete(D instance, java.util.Map params) |
|
void |
discard(D instance) |
|
protected void |
flushSession(org.hibernate.Session session) |
|
org.hibernate.SessionFactory |
getSessionFactory() |
|
protected java.lang.Object |
handleValidationError(org.grails.datastore.mapping.model.PersistentEntity entity, java.lang.Object target, org.springframework.validation.Errors errors) Sets the flush mode to manual. which ensures that the database changes are not persisted to the database if a validation error occurs. |
|
protected void |
incrementVersion(java.lang.Object target) Increments the entities version number in order to force an update |
|
D |
insert(D instance, java.util.Map params) |
|
boolean |
instanceOf(D instance, java.lang.Class cls) |
|
boolean |
isAttached(D instance) |
|
D |
lock(D instance) |
|
static void |
markInsertActive() Called by org.grails.orm.hibernate.metaclass.SavePersistentMethod's performInsert to set a ThreadLocal variable that determines the value for getAssumedUnsaved(). |
|
D |
merge(D instance, java.util.Map params) |
|
protected D |
performInsert(D target, boolean shouldFlush) |
|
protected D |
performMerge(D target, boolean flush) |
|
protected D |
performSave(D target, boolean flush) |
|
D |
refresh(D instance) |
|
static void |
resetInsertActive() Clears the ThreadLocal variable set by markInsertActive(). |
|
D |
save(D target, java.util.Map arguments) |
|
protected void |
setErrorsOnInstance(java.lang.Object target, org.springframework.validation.Errors errors) Associates the Errors object on the instance |
|
void |
setObjectToReadOnly(java.lang.Object target) Sets the target object to read-only using the given SessionFactory instance. |
|
abstract void |
setObjectToReadWrite(java.lang.Object target) Sets the target object to read-write, allowing Hibernate to dirty check it and auto-flush changes. |
|
protected boolean |
shouldFail(java.util.Map map) |
|
protected boolean |
shouldFlush(java.util.Map map) |
When a domain instance is saved without validation, we put it into this thread local variable. Any code that needs to know whether the domain instance should be validated can just check the value. Note that this only works because the session is flushed when a domain instance is saved without validation.
Sets the flush mode to manual. which ensures that the database changes are not persisted to the database if a validation error occurs. If save() is called again and validation passes the code will check if there is a manual flush mode and flush manually if necessary
domainClass
- The domain classtarget
- The target object that failed validationerrors
- The Errors instanceIncrements the entities version number in order to force an update
target
- The target entityCalled by org.grails.orm.hibernate.metaclass.SavePersistentMethod's performInsert to set a ThreadLocal variable that determines the value for getAssumedUnsaved().
Clears the ThreadLocal variable set by markInsertActive().
Associates the Errors object on the instance
target
- The target instanceerrors
- The Errors objectSets the target object to read-only using the given SessionFactory instance. This avoids Hibernate performing any dirty checking on the object
target
- The target objectsessionFactory
- The SessionFactory instanceSets the target object to read-write, allowing Hibernate to dirty check it and auto-flush changes.
target
- The target objectsessionFactory
- The SessionFactory instanceGroovy Documentation