EntityManager.merge() can insert new objects and update existing ones.
Why would one want to use persist() (which can only create new objects)?
|
Why would one want to use |
|||||
|
|
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.
Scenario 1 and 3 are roughly equivalent, but there are some situations where you'd want to use Scenario 2. |
|||||||||||||||||
|
|
The JPA specification says the following about
So using Although the specification is unclear, |
||||
|
|
|
I noticed that when I used |
|||
|
|
Some more details about merge which will help you to use merge over persist:
All of the above information was taken from "Pro JPA 2 Mastering the Java™ Persistence API" by Mike Keith and Merrick Schnicariol. Chapter 6. Section detachment and merging. This book is actually a second book devoted to JPA by authors. This new book has many new information then former one. I really recommed to read this book for ones who will be seriously involved with JPA. I am sorry for anonimously posting my first answer. |
||||
|
|
|
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 The following has worked for me:
|
||||
|
|
|
Scenario X: Table:Spitter (One) ,Table: Spittles (Many) (Spittles is Owner of the relationship with a FK:spitter_id) This scenario results in saving : The Spitter and both Spittles as if owned by Same Spitter.
Scenario Y: This will save the Spitter, will save the 2 Spittles But they will not reference the same Spitter!
|
|||||||||||||
|