Package | Description |
---|---|
org.springframework.orm.hibernate3 |
Package providing integration of
Hibernate 3.x
with Spring concepts.
|
Modifier and Type | Method and Description |
---|---|
protected <T> T |
HibernateTemplate.doExecute(HibernateCallback<T> action,
boolean enforceNewSession,
boolean enforceNativeSession)
Execute the action specified by the given action object within a Session.
|
<T> T |
HibernateOperations.execute(HibernateCallback<T> action)
Execute the action specified by the given action object within a
Session . |
<T> T |
HibernateTemplate.execute(HibernateCallback<T> action) |
List |
HibernateOperations.executeFind(HibernateCallback<?> action)
Deprecated.
as of Spring 3.2.7, in favor of using a regular
HibernateOperations.execute(org.springframework.orm.hibernate3.HibernateCallback<T>)
call with a generic List type declared |
List |
HibernateTemplate.executeFind(HibernateCallback<?> action)
Deprecated.
|
<T> T |
HibernateTemplate.executeWithNativeSession(HibernateCallback<T> action)
Execute the action specified by the given action object within a
native
Session . |
<T> T |
HibernateTemplate.executeWithNewSession(HibernateCallback<T> action)
Execute the action specified by the given action object within a
new
Session . |
Copyright © 2015. All rights reserved.