পৃষ্ঠাসমূহ

Search Your Article

CS

 

Welcome to GoogleDG – your one-stop destination for free learning resources, guides, and digital tools.

At GoogleDG, we believe that knowledge should be accessible to everyone. Our mission is to provide readers with valuable ebooks, tutorials, and tech-related content that makes learning easier, faster, and more enjoyable.

What We Offer:

  • 📘 Free & Helpful Ebooks – covering education, technology, self-development, and more.

  • 💻 Step-by-Step Tutorials – practical guides on digital tools, apps, and software.

  • 🌐 Tech Updates & Tips – simplified information to keep you informed in the fast-changing digital world.

  • 🎯 Learning Support – resources designed to support students, professionals, and lifelong learners.

    Latest world News 

     

Our Vision

To create a digital knowledge hub where anyone, from beginners to advanced learners, can find trustworthy resources and grow their skills.

Why Choose Us?

✔ Simple explanations of complex topics
✔ 100% free access to resources
✔ Regularly updated content
✔ A community that values knowledge sharing

We are continuously working to expand our content library and provide readers with the most useful and relevant digital learning materials.

📩 If you’d like to connect, share feedback, or suggest topics, feel free to reach us through the Contact page.

Pageviews

Monday, January 16, 2017

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 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
1 Transaction beginTransaction() Begin a unit of work and return the associated Transaction object.
2 void cancelQuery() Cancel the execution of the current query.
3 void clear() Completely clear the session.
4 Connection close() End the session by releasing the JDBC connection and cleaning up.
5 Criteria createCriteria(Class persistentClass) Create a new Criteria instance, for the given entity class, or a superclass of an entity class.
6 Criteria createCriteria(String entityName) Create a new Criteria instance, for the given entity name.
7 Serializable getIdentifier(Object object) Return the identifier value of the given entity as associated with this session.
8 Query createFilter(Object collection, String queryString) Create a new instance of Query for the given collection and filter string.
9 Query createQuery(String queryString) Create a new instance of Query for the given HQL query string.
10 SQLQuery createSQLQuery(String queryString) Create a new instance of SQLQuery for the given SQL query string.
11 void delete(Object object) Remove a persistent instance from the datastore.
12 void delete(String entityName, Object object) Remove a persistent instance from the datastore.
13 Session 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.
14 SessionFactory getSessionFactory() Get the session factory which created this session.
15 void refresh(Object object) Re-read the state of the given instance from the underlying database.
16 Transaction getTransaction() Get the Transaction instance associated with this session.
17 boolean isConnected() Check if the session is currently connected.
18 boolean isDirty() Does this session contain any changes which must be synchronized with the database?
19 boolean isOpen() Check if the session is still open.
20 Serializable save(Object object) Persist the given transient instance, first assigning a generated identifier.
21 void saveOrUpdate(Object object) Either save(Object) or update(Object) the given instance.
22 void update(Object object) Update the persistent instance with the identifier of the given detached instance.
23 void update(String entityName, Object object) Update the persistent instance with the identifier of the given detached instance.

No comments:

Post a Comment