Pages

mercredi 29 mai 2013

Hibernate Sessions

A Session is used to get a physical connection with a database. The Session object is lightweight and designed to be instantiated each time an interaction is needed with the database. Persistent objects are saved and retrieved through a Session object.



The session objects should not be kept open for a long time because they are not usually thread safe and they should be created and destroyed them as needed. The main function of the Session is to offer create, read and delete operations for instances of mapped entity classes. Instances may exist in one of the following three states at a given point in time:
  • transient: A new instance of a a persistent class which is not associated with a Session and has no representation in the database and no identifier value is considered transient by Hibernate.
  • persistent: You can make a transient instance persistent by associating it with a Session. A persistent instance has a representation in the database, an identifier value and is associated with a Session.
  • detached: Once we close the Hibernate Session, the persistent instance will become a detached instance.
A Session instance is serializable if its persistent classes are serializable. A typical transaction should use the following idiom:
Session session = factory.openSession();
Transaction tx = null;
try {
   tx = session.beginTransaction();
   // do some work
   ...
   tx.commit();
}
catch (Exception e) {
   if (tx!=null) tx.rollback();
   e.printStackTrace(); 
}finally {
   session.close();
}
If the Session throws an exception, the transaction must be rolled back and the session must be discarded.

Session Interface Methods:

There are number of methods provided by the Session interface but I'm going to list down few important methods only, which we will use in this tutorial. You can check Hibernate documentation for a complete list of methods associated with Session and SessionFactory.
S.N.Session Methods and Description
1Transaction beginTransaction() 
Begin a unit of work and return the associated Transaction object.
2void cancelQuery() 
Cancel the execution of the current query.
3void clear() 
Completely clear the session.
4Connection close() 
End the session by releasing the JDBC connection and cleaning up.
5Criteria createCriteria(Class persistentClass) 
Create a new Criteria instance, for the given entity class, or a superclass of an entity class.
6Criteria createCriteria(String entityName) 
Create a new Criteria instance, for the given entity name.
7Serializable getIdentifier(Object object) 
Return the identifier value of the given entity as associated with this session.
8Query createFilter(Object collection, String queryString) 
Create a new instance of Query for the given collection and filter string.
9Query createQuery(String queryString) 
Create a new instance of Query for the given HQL query string.
10SQLQuery createSQLQuery(String queryString) 
Create a new instance of SQLQuery for the given SQL query string.
11void delete(Object object) 
Remove a persistent instance from the datastore.
12void delete(String entityName, Object object) 
Remove a persistent instance from the datastore.
13Session get(String entityName, Serializable id) 
Return the persistent instance of the given named entity with the given identifier, or null if there is no such persistent instance.
14SessionFactory getSessionFactory() 
Get the session factory which created this session.
15void refresh(Object object) 
Re-read the state of the given instance from the underlying database.
16Transaction getTransaction() 
Get the Transaction instance associated with this session.
17boolean isConnected() 
Check if the session is currently connected.
18boolean isDirty() 
Does this session contain any changes which must be synchronized with the database?
19boolean isOpen() 
Check if the session is still open.
20Serializable save(Object object) 
Persist the given transient instance, first assigning a generated identifier.
21void saveOrUpdate(Object object) 
Either save(Object) or update(Object) the given instance.
22void update(Object object) 
Update the persistent instance with the identifier of the given detached instance.
23void update(String entityName, Object object) 
Update the persistent instance with the identifier of the given detached instance.

0 commentaires:

Enregistrer un commentaire