up vote 108 down vote favorite
73
share [g+] share [fb]

EntityManager.merge() can insert new objects and update existing ones.

Why would one want to use persist() (which can only create new objects)?

link|improve this question

75% accept rate
feedback

4 Answers

up vote 201 down vote accepted

Either way will add an entity to a PersistenceContext, the difference is in what you do with the entity afterwards.

Persist takes an entity instance, adds it to the context and makes that instance managed (ie future updates to the entity will be tracked)

Merge creates a new instance of your entity, copies the state from the supplied entity, and makes the new copy managed. The instance you pass in will not be managed (any changes you make will not be part of the transaction - unless you call merge again).

Maybe a code example will help.

MyEntity e = new MyEntity();

// scenario 1
// tran starts
em.persist(e); 
e.setSomeField(someValue); 
// tran ends, and the row for someField is updated in the database

// scenario 2
// tran starts
e = new MyEntity();
em.merge(e);
e.setSomeField(anotherValue); 
// tran ends but the row for someField is not updated in the database (you made the changes *after* merging

// scenario 3
// tran starts
e = new MyEntity();
MyEntity e2 = em.merge(e);
e2.setSomeField(anotherValue); 
// tran ends and the row for someField is updated (the changes were made to e2, not e)

Scenario 1 and 3 are roughly equivalent, but there are some situations where you'd want to use Scenario 2.

link|improve this answer
4  
Upvoted. Straight to point and good reference material. – James Poulson Jul 2 '10 at 11:30
I would like to use Session.persist() for detached entity, but first I need to re-associate it with session. Unfortunately, Session.lock(entity, LockMode.NONE) fails with exception saying that lazy collections are not initialized. Am I doing something wrong? – dma_k Sep 26 '10 at 20:14
2  
@dma_k: Looks like you're using Hibernate. I'm less familiar with Hibernate than JPA - but in JPA if you call EntityManager.persist() and pass in a detached entity you will: a) get an EntityExistsException immediately or b) get another PersistenceException at flush / commit time. Maybe I've misunderstood the question here? – Mike Sep 30 '10 at 17:02
This answer might be improved if it also covered the cases where the entity being merged/persisted already exists in the persistent context (or at least made it clearer that it only describes the behaviour when the persisted/merged entity doesn't already exist) – Henry Dec 5 '11 at 12:44
feedback

I noticed that when I used em.merge, I got a SELECT statement for every INSERT, even when there was no field that JPA was generating for me--the primary key field was a UUID that I set myself. I switched to em.persist(myEntityObject) and got just INSERT statements then.

link|improve this answer
Makes sense since you assign the IDs and the JPA container has no idea where you got that from. There is a (small) chance that the object already exists in the database, for example in a scenario where several applications write to the same database. – Aaron Digulla Jan 21 at 10:59
feedback

I was getting lazyLoading exceptions on my entity because I was trying to access a lazy loaded collection that was in session.

What I would do was in a separate request, retrieve the entity from session and then try to access a collection in my jsp page which was problematic.

To alleviate this, I updated the same entity in my controller and passed it to my jsp, although I imagine when I re-saved in session that it will also be accessible though SessionScope and not throw a LazyLoadingException, a modification of example 2:

The following has worked for me:

// scenario 2 MY WAY
// tran starts
e = new MyEntity();
e = em.merge(e); // re-assign to the same entity "e"

//access e from jsp and it will work dandy!!
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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