Java Doc for HibernateOperations.java in  » J2EE » spring-framework-2.0.6 » org » springframework » orm » hibernate » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » J2EE » spring framework 2.0.6 » org.springframework.orm.hibernate 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.springframework.orm.hibernate.HibernateOperations

All known Subclasses:   org.springframework.orm.hibernate.HibernateTemplate,
HibernateOperations
public interface HibernateOperations (Code)
Interface that specifies a basic set of Hibernate operations, implemented by HibernateTemplate . Not often used, but a useful option to enhance testability, as it can easily be mocked or stubbed.

Defines HibernateTemplate's data access methods that mirror various net.sf.hibernate.Session methods. Users are strongly encouraged to read the Hibernate Session javadocs for details on the semantics of those methods.

Note that operations that return an java.util.Iterator (i.e. iterate(..)) are supposed to be used within Spring-driven or JTA-driven transactions (with HibernateTransactionManager , org.springframework.transaction.jta.JtaTransactionManager , or EJB CMT). Else, the Iterator won't be able to read results from its java.sql.ResultSet anymore, as the underlying Hibernate Session will already have been closed.

Note that lazy loading will just work with an open Hibernate Session, either within a transaction or within org.springframework.orm.hibernate.support.OpenSessionInViewFilter / org.springframework.orm.hibernate.support.OpenSessionInViewInterceptor . Furthermore, some operations just make sense within transactions, for example: contains, evict, lock, flush, clear.
author:
   Juergen Hoeller
since:
   05.02.2004
See Also:   HibernateTemplate
See Also:   net.sf.hibernate.Session
See Also:   HibernateTransactionManager
See Also:   org.springframework.transaction.jta.JtaTransactionManager
See Also:   org.springframework.orm.hibernate.support.OpenSessionInViewFilter
See Also:   org.springframework.orm.hibernate.support.OpenSessionInViewInterceptor





Method Summary
 voidclear()
     Remove all objects from the Session cache, and cancel all pending saves, updates and deletes.
 voidcloseIterator(Iterator it)
     Close an Iterator created by iterate operations immediately, instead of waiting until the session is closed or disconnected.
 booleancontains(Object entity)
     Check whether the given object is in the Session cache.
 voiddelete(Object entity)
     Delete the given persistent instance.
 voiddelete(Object entity, LockMode lockMode)
     Delete the given persistent instance.
 intdelete(String queryString)
     Delete all objects returned by the query.
 intdelete(String queryString, Object value, Type type)
     Delete all objects returned by the query.
 intdelete(String queryString, Object[] values, Type[] types)
     Delete all objects returned by the query.
 voiddeleteAll(Collection entities)
     Delete all given persistent instances.
 voidevict(Object entity)
     Remove the given object from the Session cache.
 Objectexecute(HibernateCallback action)
     Execute the action specified by the given action object within a Session. Application exceptions thrown by the action object get propagated to the caller (can only be unchecked).
 ListexecuteFind(HibernateCallback action)
     Execute the specified action assuming that the result object is a List.
 Listfind(String queryString)
     Execute an HQL query.
 Listfind(String queryString, Object value)
     Execute an HQL query, binding one value to a "?" parameter in the query string.
 Listfind(String queryString, Object value, Type type)
     Execute an HQL query, binding one value to a "?" parameter of the given type in the query string.
 Listfind(String queryString, Object[] values)
     Execute an HQL query, binding a number of values to "?" parameters in the query string.
 Listfind(String queryString, Object[] values, Type[] types)
     Execute an HQL query, binding a number of values to "?" parameters of the given types in the query string.
 ListfindByNamedParam(String queryString, String paramName, Object value)
     Execute an HQL query, binding one value to a ":" named parameter in the query string.
 ListfindByNamedParam(String queryString, String paramName, Object value, Type type)
     Execute an HQL query, binding one value to a ":" named parameter in the query string.
 ListfindByNamedParam(String queryString, String[] paramNames, Object[] values)
     Execute an HQL query, binding a number of values to ":" named parameters in the query string.
 ListfindByNamedParam(String queryString, String[] paramNames, Object[] values, Type[] types)
     Execute an HQL query, binding a number of values to ":" named parameters in the query string.
 ListfindByNamedQuery(String queryName)
     Execute a named query.
 ListfindByNamedQuery(String queryName, Object value)
     Execute a named query, binding one value to a "?" parameter in the query string.
 ListfindByNamedQuery(String queryName, Object value, Type type)
     Execute a named query, binding one value to a "?" parameter in the query string.
 ListfindByNamedQuery(String queryName, Object[] values)
     Execute a named query, binding a number of values to "?" parameters in the query string.
 ListfindByNamedQuery(String queryName, Object[] values, Type[] types)
     Execute a named query, binding a number of values to "?" parameters in the query string.
 ListfindByNamedQueryAndNamedParam(String queryName, String paramName, Object value)
     Execute a named query, binding one value to a ":" named parameter in the query string.
 ListfindByNamedQueryAndNamedParam(String queryName, String paramName, Object value, Type type)
     Execute a named query, binding one value to a ":" named parameter in the query string.
 ListfindByNamedQueryAndNamedParam(String queryName, String[] paramNames, Object[] values)
     Execute a named query, binding a number of values to ":" named parameters in the query string.
 ListfindByNamedQueryAndNamedParam(String queryName, String[] paramNames, Object[] values, Type[] types)
     Execute a named query, binding a number of values to ":" named parameters in the query string.
 ListfindByNamedQueryAndValueBean(String queryName, Object valueBean)
     Execute a named query, binding the properties of the given bean to ":" named parameters in the query string.
 ListfindByValueBean(String queryString, Object valueBean)
     Execute an HQL query, binding the properties of the given bean to named parameters in the query string.
 voidflush()
     Flush all pending saves, updates and deletes to the database.

Only invoke this for selective eager flushing, for example when JDBC code needs to see certain changes within the same transaction.

 Objectget(Class entityClass, Serializable id)
     Return the persistent instance of the given entity class with the given identifier, or null if not found.
 Objectget(Class entityClass, Serializable id, LockMode lockMode)
     Return the persistent instance of the given entity class with the given identifier, or null if not found.
 voidinitialize(Object proxy)
     Force initialization of a Hibernate proxy or persistent collection.
 Iteratoriterate(String queryString)
     Execute a query for persistent instances.

Returns the results as Iterator.

 Iteratoriterate(String queryString, Object value)
     Execute a query for persistent instances, binding one value to a "?" parameter in the query string.

Returns the results as Iterator.

 Iteratoriterate(String queryString, Object value, Type type)
     Execute a query for persistent instances, binding one value to a "?" parameter of the given type in the query string.

Returns the results as Iterator.

 Iteratoriterate(String queryString, Object[] values)
     Execute a query for persistent instances, binding a number of values to "?" parameters in the query string.

Returns the results as Iterator.

 Iteratoriterate(String queryString, Object[] values, Type[] types)
     Execute a query for persistent instances, binding a number of values to "?" parameters of the given types in the query string.

Returns the results as Iterator.

 Objectload(Class entityClass, Serializable id)
     Return the persistent instance of the given entity class with the given identifier, throwing an exception if not found.
 Objectload(Class entityClass, Serializable id, LockMode lockMode)
     Return the persistent instance of the given entity class with the given identifier, throwing an exception if not found.
 voidload(Object entity, Serializable id)
     Load the persistent instance with the given identifier into the given object, throwing an exception if not found.
 ListloadAll(Class entityClass)
     Return all persistent instances of the given entity class. Note: Use queries or criteria for retrieving a specific subset.
 voidlock(Object entity, LockMode lockMode)
     Obtain the specified lock level upon the given object, implicitly checking whether the corresponding database entry still exists (throwing an OptimisticLockingFailureException if not found).
 voidrefresh(Object entity)
     Re-read the state of the given persistent instance.
 voidrefresh(Object entity, LockMode lockMode)
     Re-read the state of the given persistent instance.
 voidreplicate(Object entity, ReplicationMode replicationMode)
     Persist the state of the given detached instance according to the given replication mode, reusing the current identifier value.
 Serializablesave(Object entity)
     Persist the given transient instance.
 voidsave(Object entity, Serializable id)
     Persist the given transient instance with the given identifier.
 voidsaveOrUpdate(Object entity)
     Save or update the given persistent instance, according to its id (matching the configured "unsaved-value"?).
 voidsaveOrUpdateAll(Collection entities)
     Save or update all given persistent instances, according to its id (matching the configured "unsaved-value"?).
 ObjectsaveOrUpdateCopy(Object entity)
     Save or update the contents of given persistent object, according to its id (matching the configured "unsaved-value"?).
 voidupdate(Object entity)
     Update the given persistent instance.
 voidupdate(Object entity, LockMode lockMode)
     Update the given persistent instance.



Method Detail
clear
void clear() throws DataAccessException(Code)
Remove all objects from the Session cache, and cancel all pending saves, updates and deletes.
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.clear



closeIterator
void closeIterator(Iterator it) throws DataAccessException(Code)
Close an Iterator created by iterate operations immediately, instead of waiting until the session is closed or disconnected.
Parameters:
  it - the Iterator to close
throws:
  DataAccessException - if the Iterator could not be closed
See Also:   net.sf.hibernate.Hibernate.close



contains
boolean contains(Object entity) throws DataAccessException(Code)
Check whether the given object is in the Session cache.
Parameters:
  entity - the persistence instance to check whether the given object is in the Session cache
throws:
  org.springframework.dao.DataAccessException - if there is a Hibernate error
See Also:   net.sf.hibernate.Session.contains



delete
void delete(Object entity) throws DataAccessException(Code)
Delete the given persistent instance.
Parameters:
  entity - the persistent instance to delete
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.delete(Object)



delete
void delete(Object entity, LockMode lockMode) throws DataAccessException(Code)
Delete the given persistent instance.

Obtains the specified lock mode if the instance exists, implicitly checking whether the corresponding database entry still exists (throwing an OptimisticLockingFailureException if not found).
Parameters:
  entity - the persistent instance to delete
Parameters:
  lockMode - the lock mode to obtain
throws:
  org.springframework.orm.ObjectOptimisticLockingFailureException - if not found
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   HibernateOptimisticLockingFailureException
See Also:   net.sf.hibernate.Session.delete(Object)




delete
int delete(String queryString) throws DataAccessException(Code)
Delete all objects returned by the query. Return the number of entity instances deleted.
Parameters:
  queryString - a query expressed in Hibernate's query language the number of instances deleted
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.delete(String)



delete
int delete(String queryString, Object value, Type type) throws DataAccessException(Code)
Delete all objects returned by the query. Return the number of entity instances deleted.
Parameters:
  queryString - a query expressed in Hibernate's query language
Parameters:
  value - the value of the parameter
Parameters:
  type - Hibernate type of the parameter (or null) the number of instances deleted
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.delete(StringObjectnet.sf.hibernate.type.Type)



delete
int delete(String queryString, Object[] values, Type[] types) throws DataAccessException(Code)
Delete all objects returned by the query. Return the number of entity instances deleted.
Parameters:
  queryString - a query expressed in Hibernate's query language
Parameters:
  values - the values of the parameters
Parameters:
  types - Hibernate types of the parameters (or null) the number of instances deleted
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.delete(StringObject[]net.sf.hibernate.type.Type[])



deleteAll
void deleteAll(Collection entities) throws DataAccessException(Code)
Delete all given persistent instances.

This can be combined with any of the find methods to delete by query in two lines of code, similar to Session's delete by query methods.
Parameters:
  entities - the persistent instances to delete
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.delete(String)




evict
void evict(Object entity) throws DataAccessException(Code)
Remove the given object from the Session cache.
Parameters:
  entity - the persistent instance to evict
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.evict



execute
Object execute(HibernateCallback action) throws DataAccessException(Code)
Execute the action specified by the given action object within a Session. Application exceptions thrown by the action object get propagated to the caller (can only be unchecked). Hibernate exceptions are transformed into appropriate DAO ones. Allows for returning a result object, i.e. a domain object or a collection of domain objects.

Note: Callback code is not supposed to handle transactions itself! Use an appropriate transaction manager like HibernateTransactionManager. Generally, callback code must not touch any Session lifecycle methods, like close, disconnect, or reconnect, to let the template do its work.
Parameters:
  action - callback object that specifies the Hibernate action a result object returned by the action, or null
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   HibernateTransactionManager
See Also:   org.springframework.dao
See Also:   org.springframework.transaction
See Also:   net.sf.hibernate.Session




executeFind
List executeFind(HibernateCallback action) throws DataAccessException(Code)
Execute the specified action assuming that the result object is a List. This is a convenience method for executing Hibernate find calls or queries within an action.
Parameters:
  action - calback object that specifies the Hibernate action a List result returned by the action, or null
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors



find
List find(String queryString) throws DataAccessException(Code)
Execute an HQL query.
Parameters:
  queryString - a query expressed in Hibernate's query language a List containing the results of the query execution
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.find(String)
See Also:   net.sf.hibernate.Session.createQuery



find
List find(String queryString, Object value) throws DataAccessException(Code)
Execute an HQL query, binding one value to a "?" parameter in the query string.
Parameters:
  queryString - a query expressed in Hibernate's query language
Parameters:
  value - the value of the parameter a List containing the results of the query execution
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.find(StringObjectnet.sf.hibernate.type.Type)
See Also:   net.sf.hibernate.Session.createQuery



find
List find(String queryString, Object value, Type type) throws DataAccessException(Code)
Execute an HQL query, binding one value to a "?" parameter of the given type in the query string.
Parameters:
  queryString - a query expressed in Hibernate's query language
Parameters:
  value - the value of the parameter
Parameters:
  type - Hibernate type of the parameter (or null) a List containing the results of the query execution
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.find(StringObjectnet.sf.hibernate.type.Type)
See Also:   net.sf.hibernate.Session.createQuery



find
List find(String queryString, Object[] values) throws DataAccessException(Code)
Execute an HQL query, binding a number of values to "?" parameters in the query string.
Parameters:
  queryString - a query expressed in Hibernate's query language
Parameters:
  values - the values of the parameters a List containing the results of the query execution
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.find(StringObject[]net.sf.hibernate.type.Type[])
See Also:   net.sf.hibernate.Session.createQuery



find
List find(String queryString, Object[] values, Type[] types) throws DataAccessException(Code)
Execute an HQL query, binding a number of values to "?" parameters of the given types in the query string.
Parameters:
  queryString - a query expressed in Hibernate's query language
Parameters:
  values - the values of the parameters
Parameters:
  types - Hibernate types of the parameters (or null) a List containing the results of the query execution
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.find(StringObject[]net.sf.hibernate.type.Type[])
See Also:   net.sf.hibernate.Session.createQuery



findByNamedParam
List findByNamedParam(String queryString, String paramName, Object value) throws DataAccessException(Code)
Execute an HQL query, binding one value to a ":" named parameter in the query string.
Parameters:
  queryString - a query expressed in Hibernate's query language
Parameters:
  paramName - the name of parameter
Parameters:
  value - the value of the parameter a List containing the results of the query execution
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.find(StringObjectnet.sf.hibernate.type.Type)
See Also:   net.sf.hibernate.Session.getNamedQuery(String)



findByNamedParam
List findByNamedParam(String queryString, String paramName, Object value, Type type) throws DataAccessException(Code)
Execute an HQL query, binding one value to a ":" named parameter in the query string.
Parameters:
  queryString - a query expressed in Hibernate's query language
Parameters:
  paramName - the name of the parameter
Parameters:
  value - the value of the parameter
Parameters:
  type - Hibernate type of the parameter (or null) a List containing the results of the query execution
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.find(StringObjectnet.sf.hibernate.type.Type)
See Also:   net.sf.hibernate.Session.getNamedQuery(String)



findByNamedParam
List findByNamedParam(String queryString, String[] paramNames, Object[] values) throws DataAccessException(Code)
Execute an HQL query, binding a number of values to ":" named parameters in the query string.
Parameters:
  queryString - a query expressed in Hibernate's query language
Parameters:
  paramNames - the names of the parameters
Parameters:
  values - the values of the parameters a List containing the results of the query execution
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.find(StringObject[]net.sf.hibernate.type.Type[])
See Also:   net.sf.hibernate.Session.getNamedQuery(String)



findByNamedParam
List findByNamedParam(String queryString, String[] paramNames, Object[] values, Type[] types) throws DataAccessException(Code)
Execute an HQL query, binding a number of values to ":" named parameters in the query string.
Parameters:
  queryString - a query expressed in Hibernate's query language
Parameters:
  paramNames - the names of the parameters
Parameters:
  values - the values of the parameters
Parameters:
  types - Hibernate types of the parameters (or null) a List containing the results of the query execution
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.find(StringObject[]net.sf.hibernate.type.Type[])
See Also:   net.sf.hibernate.Session.getNamedQuery(String)



findByNamedQuery
List findByNamedQuery(String queryName) throws DataAccessException(Code)
Execute a named query.

A named query is defined in a Hibernate mapping file.
Parameters:
  queryName - the name of a Hibernate query in a mapping file a List containing the results of the query execution
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.find(String)
See Also:   net.sf.hibernate.Session.getNamedQuery(String)




findByNamedQuery
List findByNamedQuery(String queryName, Object value) throws DataAccessException(Code)
Execute a named query, binding one value to a "?" parameter in the query string.

A named query is defined in a Hibernate mapping file.
Parameters:
  queryName - the name of a Hibernate query in a mapping file
Parameters:
  value - the value of the parameter a List containing the results of the query execution
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.find(StringObjectnet.sf.hibernate.type.Type)
See Also:   net.sf.hibernate.Session.getNamedQuery(String)




findByNamedQuery
List findByNamedQuery(String queryName, Object value, Type type) throws DataAccessException(Code)
Execute a named query, binding one value to a "?" parameter in the query string.

A named query is defined in a Hibernate mapping file.
Parameters:
  queryName - the name of a Hibernate query in a mapping file
Parameters:
  value - the value of the parameter
Parameters:
  type - Hibernate type of the parameter (or null) a List containing the results of the query execution
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.find(StringObjectnet.sf.hibernate.type.Type)
See Also:   net.sf.hibernate.Session.getNamedQuery(String)




findByNamedQuery
List findByNamedQuery(String queryName, Object[] values) throws DataAccessException(Code)
Execute a named query, binding a number of values to "?" parameters in the query string.

A named query is defined in a Hibernate mapping file.
Parameters:
  queryName - the name of a Hibernate query in a mapping file
Parameters:
  values - the values of the parameters a List containing the results of the query execution
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.find(StringObject[]net.sf.hibernate.type.Type[])
See Also:   net.sf.hibernate.Session.getNamedQuery(String)




findByNamedQuery
List findByNamedQuery(String queryName, Object[] values, Type[] types) throws DataAccessException(Code)
Execute a named query, binding a number of values to "?" parameters in the query string.

A named query is defined in a Hibernate mapping file.
Parameters:
  queryName - the name of a Hibernate query in a mapping file
Parameters:
  values - the values of the parameters
Parameters:
  types - Hibernate types of the parameters (or null) a List containing the results of the query execution
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.find(StringObject[]net.sf.hibernate.type.Type[])
See Also:   net.sf.hibernate.Session.getNamedQuery(String)




findByNamedQueryAndNamedParam
List findByNamedQueryAndNamedParam(String queryName, String paramName, Object value) throws DataAccessException(Code)
Execute a named query, binding one value to a ":" named parameter in the query string.

A named query is defined in a Hibernate mapping file.
Parameters:
  queryName - the name of a Hibernate query in a mapping file
Parameters:
  paramName - the name of parameter
Parameters:
  value - the value of the parameter a List containing the results of the query execution
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.find(StringObjectnet.sf.hibernate.type.Type)
See Also:   net.sf.hibernate.Session.getNamedQuery(String)




findByNamedQueryAndNamedParam
List findByNamedQueryAndNamedParam(String queryName, String paramName, Object value, Type type) throws DataAccessException(Code)
Execute a named query, binding one value to a ":" named parameter in the query string.

A named query is defined in a Hibernate mapping file.
Parameters:
  queryName - the name of a Hibernate query in a mapping file
Parameters:
  paramName - the name of the parameter
Parameters:
  value - the value of the parameter
Parameters:
  type - Hibernate type of the parameter (or null) a List containing the results of the query execution
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.find(StringObjectnet.sf.hibernate.type.Type)
See Also:   net.sf.hibernate.Session.getNamedQuery(String)




findByNamedQueryAndNamedParam
List findByNamedQueryAndNamedParam(String queryName, String[] paramNames, Object[] values) throws DataAccessException(Code)
Execute a named query, binding a number of values to ":" named parameters in the query string.

A named query is defined in a Hibernate mapping file.
Parameters:
  queryName - the name of a Hibernate query in a mapping file
Parameters:
  paramNames - the names of the parameters
Parameters:
  values - the values of the parameters a List containing the results of the query execution
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.find(StringObject[]net.sf.hibernate.type.Type[])
See Also:   net.sf.hibernate.Session.getNamedQuery(String)




findByNamedQueryAndNamedParam
List findByNamedQueryAndNamedParam(String queryName, String[] paramNames, Object[] values, Type[] types) throws DataAccessException(Code)
Execute a named query, binding a number of values to ":" named parameters in the query string.

A named query is defined in a Hibernate mapping file.
Parameters:
  queryName - the name of a Hibernate query in a mapping file
Parameters:
  paramNames - the names of the parameters
Parameters:
  values - the values of the parameters
Parameters:
  types - Hibernate types of the parameters (or null) a List containing the results of the query execution
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.find(StringObject[]net.sf.hibernate.type.Type[])
See Also:   net.sf.hibernate.Session.getNamedQuery(String)




findByNamedQueryAndValueBean
List findByNamedQueryAndValueBean(String queryName, Object valueBean) throws DataAccessException(Code)
Execute a named query, binding the properties of the given bean to ":" named parameters in the query string.

A named query is defined in a Hibernate mapping file.
Parameters:
  queryName - the name of a Hibernate query in a mapping file
Parameters:
  valueBean - the values of the parameters a List containing the results of the query execution
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Query.setProperties
See Also:   net.sf.hibernate.Session.getNamedQuery(String)




findByValueBean
List findByValueBean(String queryString, Object valueBean) throws DataAccessException(Code)
Execute an HQL query, binding the properties of the given bean to named parameters in the query string.
Parameters:
  queryString - a query expressed in Hibernate's query language
Parameters:
  valueBean - the values of the parameters a List containing the results of the query execution
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Query.setProperties
See Also:   net.sf.hibernate.Session.createQuery



flush
void flush() throws DataAccessException(Code)
Flush all pending saves, updates and deletes to the database.

Only invoke this for selective eager flushing, for example when JDBC code needs to see certain changes within the same transaction. Else, it's preferable to rely on auto-flushing at transaction completion.
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.flush




get
Object get(Class entityClass, Serializable id) throws DataAccessException(Code)
Return the persistent instance of the given entity class with the given identifier, or null if not found.

This method is a thin wrapper around net.sf.hibernate.Session.get(Classjava.io.Serializable) for convenience. For an explanation of the exact semantics of this method, please do refer to the Hibernate API documentation in the first instance.
Parameters:
  entityClass - a persistent class
Parameters:
  id - an identifier of the persistent instance the persistent instance, or null if not found
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.get(Classjava.io.Serializable)




get
Object get(Class entityClass, Serializable id, LockMode lockMode) throws DataAccessException(Code)
Return the persistent instance of the given entity class with the given identifier, or null if not found.

Obtains the specified lock mode if the instance exists.

This method is a thin wrapper around net.sf.hibernate.Session.get(Classjava.io.Serializablenet.sf.hibernate.LockMode) for convenience. For an explanation of the exact semantics of this method, please do refer to the Hibernate API documentation in the first instance.
Parameters:
  entityClass - a persistent class
Parameters:
  id - an identifier of the persistent instance
Parameters:
  lockMode - the lock mode to obtain the persistent instance, or null if not found
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.get(Classjava.io.Serializablenet.sf.hibernate.LockMode)




initialize
void initialize(Object proxy) throws DataAccessException(Code)
Force initialization of a Hibernate proxy or persistent collection.
Parameters:
  proxy - a proxy for a persistent object or a persistent collection
throws:
  DataAccessException - if we can't initialize the proxy, for examplebecause it is not associated with an active Session
See Also:   net.sf.hibernate.Hibernate.initialize



iterate
Iterator iterate(String queryString) throws DataAccessException(Code)
Execute a query for persistent instances.

Returns the results as Iterator. Entities returned are initialized on demand. See Hibernate docs for details.
Parameters:
  queryString - a query expressed in Hibernate's query language an Iterator containing 0 or more persistent instances
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.iterate(String)
See Also:   net.sf.hibernate.Session.createQuery




iterate
Iterator iterate(String queryString, Object value) throws DataAccessException(Code)
Execute a query for persistent instances, binding one value to a "?" parameter in the query string.

Returns the results as Iterator. Entities returned are initialized on demand. See Hibernate docs for details.
Parameters:
  queryString - a query expressed in Hibernate's query language
Parameters:
  value - the value of the parameter an Iterator containing 0 or more persistent instances
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.iterate(StringObjectnet.sf.hibernate.type.Type)
See Also:   net.sf.hibernate.Session.createQuery




iterate
Iterator iterate(String queryString, Object value, Type type) throws DataAccessException(Code)
Execute a query for persistent instances, binding one value to a "?" parameter of the given type in the query string.

Returns the results as Iterator. Entities returned are initialized on demand. See Hibernate docs for details.
Parameters:
  queryString - a query expressed in Hibernate's query language
Parameters:
  value - the value of the parameter
Parameters:
  type - Hibernate type of the parameter (or null) an Iterator containing 0 or more persistent instances
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.iterate(StringObjectnet.sf.hibernate.type.Type)
See Also:   net.sf.hibernate.Session.createQuery




iterate
Iterator iterate(String queryString, Object[] values) throws DataAccessException(Code)
Execute a query for persistent instances, binding a number of values to "?" parameters in the query string.

Returns the results as Iterator. Entities returned are initialized on demand. See Hibernate docs for details.
Parameters:
  queryString - a query expressed in Hibernate's query language
Parameters:
  values - the values of the parameters an Iterator containing 0 or more persistent instances
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.find(StringObject[]net.sf.hibernate.type.Type[])
See Also:   net.sf.hibernate.Session.createQuery




iterate
Iterator iterate(String queryString, Object[] values, Type[] types) throws DataAccessException(Code)
Execute a query for persistent instances, binding a number of values to "?" parameters of the given types in the query string.

Returns the results as Iterator. Entities returned are initialized on demand. See Hibernate docs for details.
Parameters:
  queryString - a query expressed in Hibernate's query language
Parameters:
  values - the values of the parameters
Parameters:
  types - Hibernate types of the parameters (or null) an Iterator containing 0 or more persistent instances
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.find(StringObject[]net.sf.hibernate.type.Type[])
See Also:   net.sf.hibernate.Session.createQuery




load
Object load(Class entityClass, Serializable id) throws DataAccessException(Code)
Return the persistent instance of the given entity class with the given identifier, throwing an exception if not found.

This method is a thin wrapper around net.sf.hibernate.Session.load(Classjava.io.Serializable) for convenience. For an explanation of the exact semantics of this method, please do refer to the Hibernate API documentation in the first instance.
Parameters:
  entityClass - a persistent class
Parameters:
  id - an identifier of the persistent instance the persistent instance
throws:
  org.springframework.orm.ObjectRetrievalFailureException - if not found
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.load(Classjava.io.Serializable)




load
Object load(Class entityClass, Serializable id, LockMode lockMode) throws DataAccessException(Code)
Return the persistent instance of the given entity class with the given identifier, throwing an exception if not found. Obtains the specified lock mode if the instance exists.

This method is a thin wrapper around net.sf.hibernate.Session.load(Classjava.io.Serializablenet.sf.hibernate.LockMode) for convenience. For an explanation of the exact semantics of this method, please do refer to the Hibernate API documentation in the first instance.
Parameters:
  entityClass - a persistent class
Parameters:
  id - an identifier of the persistent instance
Parameters:
  lockMode - the lock mode to obtain the persistent instance
throws:
  org.springframework.orm.ObjectRetrievalFailureException - if not found
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.load(Classjava.io.Serializable)




load
void load(Object entity, Serializable id) throws DataAccessException(Code)
Load the persistent instance with the given identifier into the given object, throwing an exception if not found.
Parameters:
  entity - the object (of the target class) to load into
Parameters:
  id - an identifier of the persistent instance
throws:
  org.springframework.orm.ObjectRetrievalFailureException - if not found
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.load(Objectjava.io.Serializable)



loadAll
List loadAll(Class entityClass) throws DataAccessException(Code)
Return all persistent instances of the given entity class. Note: Use queries or criteria for retrieving a specific subset.
Parameters:
  entityClass - a persistent class a List containing 0 or more persistent instances
throws:
  org.springframework.dao.DataAccessException - if there is a Hibernate error
See Also:   net.sf.hibernate.Session.createCriteria



lock
void lock(Object entity, LockMode lockMode) throws DataAccessException(Code)
Obtain the specified lock level upon the given object, implicitly checking whether the corresponding database entry still exists (throwing an OptimisticLockingFailureException if not found).
Parameters:
  entity - the persistent instance to lock
Parameters:
  lockMode - the lock mode to obtain
throws:
  org.springframework.orm.ObjectOptimisticLockingFailureException - if not found
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   HibernateOptimisticLockingFailureException
See Also:   net.sf.hibernate.Session.lock(Objectnet.sf.hibernate.LockMode)



refresh
void refresh(Object entity) throws DataAccessException(Code)
Re-read the state of the given persistent instance.
Parameters:
  entity - the persistent instance to re-read
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.refresh(Object)



refresh
void refresh(Object entity, LockMode lockMode) throws DataAccessException(Code)
Re-read the state of the given persistent instance. Obtains the specified lock mode for the instance.
Parameters:
  entity - the persistent instance to re-read
Parameters:
  lockMode - the lock mode to obtain
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.refresh(Objectnet.sf.hibernate.LockMode)



replicate
void replicate(Object entity, ReplicationMode replicationMode) throws DataAccessException(Code)
Persist the state of the given detached instance according to the given replication mode, reusing the current identifier value.
Parameters:
  entity - the persistent object to replicate
throws:
  DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.replicate(Objectnet.sf.hibernate.ReplicationMode)



save
Serializable save(Object entity) throws DataAccessException(Code)
Persist the given transient instance.
Parameters:
  entity - the transient instance to persist the generated identifier
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.save(Object)



save
void save(Object entity, Serializable id) throws DataAccessException(Code)
Persist the given transient instance with the given identifier.
Parameters:
  entity - the transient instance to persist
Parameters:
  id - the identifier to assign
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.save(Objectjava.io.Serializable)



saveOrUpdate
void saveOrUpdate(Object entity) throws DataAccessException(Code)
Save or update the given persistent instance, according to its id (matching the configured "unsaved-value"?).
Parameters:
  entity - the persistent instance to save or update(to be associated with the Hibernate Session)
throws:
  DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.saveOrUpdate(Object)



saveOrUpdateAll
void saveOrUpdateAll(Collection entities) throws DataAccessException(Code)
Save or update all given persistent instances, according to its id (matching the configured "unsaved-value"?).
Parameters:
  entities - the persistent instances to save or update(to be associated with the Hibernate Session)
throws:
  DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.saveOrUpdate(Object)



saveOrUpdateCopy
Object saveOrUpdateCopy(Object entity) throws DataAccessException(Code)
Save or update the contents of given persistent object, according to its id (matching the configured "unsaved-value"?). Will copy the contained fields to an already loaded instance with the same id, if appropriate.
Parameters:
  entity - the persistent object to save or update(not necessarily to be associated with the Hibernate Session) the actually associated persistent object(either an already loaded instance with the same id, or the given object)
throws:
  DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.saveOrUpdateCopy(Object)



update
void update(Object entity) throws DataAccessException(Code)
Update the given persistent instance.
Parameters:
  entity - the persistent instance to update
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   net.sf.hibernate.Session.update(Object)



update
void update(Object entity, LockMode lockMode) throws DataAccessException(Code)
Update the given persistent instance.

Obtains the specified lock mode if the instance exists, implicitly checking whether the corresponding database entry still exists (throwing an OptimisticLockingFailureException if not found).
Parameters:
  entity - the persistent instance to update
Parameters:
  lockMode - the lock mode to obtain
throws:
  org.springframework.orm.ObjectOptimisticLockingFailureException - if not found
throws:
  org.springframework.dao.DataAccessException - in case of Hibernate errors
See Also:   HibernateOptimisticLockingFailureException
See Also:   net.sf.hibernate.Session.update(Object)




www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.