aspose file tools
The moose likes Object Relational Mapping and the fly likes Entity manager in Hibernate Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Databases » Object Relational Mapping
Reply Bookmark "Entity manager in Hibernate" Watch "Entity manager in Hibernate" New topic
Author

Entity manager in Hibernate

Kunal Lakhani
Ranch Hand

Joined: Jun 05, 2010
Posts: 609
What is the use of Entity Manager in Hibernate?


kunal
Ran Pleasant
Ranch Hand

Joined: Jan 16, 2003
Posts: 75
Kunal Lakhani wrote:What is the use of Entity Manager in Hibernate?


Hibernate implements the JPA API and if you are doing any EJB 3.0 entity beans on JBoss you are actually using Hibernate. Use the JPA Entity Manager if you are moving existing JPA code to Hibernate or if you must use the JPA API, otherwise I say just use the regalar Hibernate sessions. I recently move several EJB 3.0 entity beans from JBoss to a Spring/Hibernate enviornment without a single problem.

Ran


Ran
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Entity manager in Hibernate
 
Similar Threads
Is hibernet an upcoming technology
EJB3 org.hibernate.LazyInitializationException:failed to lazily initialize a collection of role
Best practices
difference between session and entitymanager
Pessimistic locking Hibernate Entity Manager