I am new to Hibernate and am unclear of whether to use a SessionFactory or EntityManagerFactory to obtain the hibernate session. What is the difference between the two? Pros & Cons?

link|improve this question
feedback

1 Answer

up vote 17 down vote accepted

Prefer EntityManagerFactory and EntityManager. They are defined by the JPA standard.

SessionFactory and Session are hibernate-specific. The EntityManager invokes the hibernate session under the hood. And if you need some specific features that are not available in the EntityManager, you can obtain the session by calling:

Session session = entityManager.unwrap(Session.class);
link|improve this answer
You are a wealth of knowledge! I am just starting out with Hibernate and would like to use Hibernate with JPA Annotations - would you recommend any good resources for a beginner (besides the Hibernate documentation)? – elpisu Apr 14 '11 at 18:44
@elpisu - I can't recommend, actually. I've been using only the official documentation as a learning resource (at least in the past 2 years), so I don't know anything else reliable. But the docs are good enough. – Bozho Apr 14 '11 at 18:50
@Bozho I know that it's late but what are the drawbacks of using SessionFactory and Session? Why the use of JPA is preferred? Thanks – Mickael Marrache Nov 11 '11 at 9:39
@Bozho please can you elaborate, i also want to know why especially when spring to kinda of going entitymanager with its new spring-data-jpa which uses.What are the drawbacks on sessionFactory.THanks – black sensei Jan 9 at 19:28
I didn't understand your question – Bozho Jan 9 at 19:38
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.