Tagged Questions

108
votes
4answers
65k views

JPA EntityManager: Why use persist() over merge()?

EntityManager.merge() can insert new objects and update existing ones. Why would one want to use persist() (which can only create new objects)?
7
votes
3answers
124 views

Persisting an object in Hibernate while having a known primary key.

My problem is with detached objects... I am currently using Spring with Hibernate. I have a mapped object that has a primary key as a String (I know it sucks... but refactoring the code would take ...
2
votes
2answers
165 views

JPA merge vs. persist

So far, my preference has been to always use EntityManager's merge() take care of both insert and update. But I have also noticed that merge performs an additional select queries before update/insert ...
0
votes
1answer
27 views

Persisting entities with references to other entity classes in JPA

I am working with JSF 2.1, Netbeans 7.0.1, Glassfish 3.1.1, JPA + EJB. For instance, I have an entity class called User and it has reference (many-to-one relationship) with entity class UserType. ...
0
votes
2answers
2k views

EntityManager merge/persist problem

I'm having this strange problem where my merge() or my persist() functions are not being reflected in the database. My JdbcProductDao.java: @Repository("productDao") public class JdbcProductDao ...