What is the difference between a session and a transaction in JPA 2.0?

JavaHibernateOrmJpaPersistence

Java Problem Overview


I just begin my JPA 2.0 studies, and I have this piece of code:

em = SessionFactory.startSession();
tx = em.getTransaction();

My problem is: I'm not sure if I completly understand the difference between the use of a session and the use of a transaction. In a few lines, can anyone please tell me the biggest differences between them ? Thanks !

Java Solutions


Solution 1 - Java

You go to the bank to deposit 2 checks, and withdraw a small sum.

So you stand in line until a teller opens.

You make your first deposit.
Then your second.
Then you make your withdrawal.

Now you're done, you leave the teller line.

Getting to the teller is like creating your session, now you're in the bank, ready to work.

Each deposit and withdrawal are their own contained set of work, these are your transactions.

When you're done with your work and leave, you're closing or abandoning your session.


So, in essence, a session contains your transactions, after all you can't make a bank deposit if you never go to the bank right?

Solution 2 - Java

em = SessionFactory.startSession();

In JPA, there is no Session and no SessionFactory. SessionFactory is a hibernate-specific interface that you shouldn't use if you use JPA (use either Hibernate's own API or use Hibernate as JPA Provider, but not both.)

Solution 3 - Java

A session is what you use to interact with the database.

A transaction is used to specify boundaries for the session to operate within.

Essentially, transactions prevent the database from being corrupted by only allowing a session to interact with it at one time. (It's a bit more complicated then that, as you can have many transactions reading from the database, but only one transaction that's writing.)

Solution 4 - Java

In Hibernate, the transaction management is quite standard, just remember any exceptions thrown by Hibernate are FATAL, you have to roll back the transaction and close the current session immediately.

Here’s a Hibernate transaction template :

    Session session = null;
	Transaction tx = null;

	try{
		session = HibernateUtil.getSessionFactory().openSession();
		tx = session.beginTransaction();
		tx.setTimeout(5);

		//doSomething(session);

		tx.commit();


	}catch(RuntimeException e){
		try{
			tx.rollback();
		}catch(RuntimeException rbe){
			log.error("Couldn’t roll back transaction", rbe);
		}
		throw e;
	}finally{
		if(session!=null){
			session.close();
		}
	}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser645579View Question on Stackoverflow
Solution 1 - JavaasawyerView Answer on Stackoverflow
Solution 2 - JavaSean Patrick FloydView Answer on Stackoverflow
Solution 3 - JavaJeremyView Answer on Stackoverflow
Solution 4 - Javauser4341816View Answer on Stackoverflow