EntityManager.merge() can insert new objects and update existing ones.
Why would one want to use persist() (which can only create new objects)?
|
EntityManager.merge() can insert new objects and update existing ones. Why would one want to use persist() (which can only create new objects)?
| |||
|
feedback
|
|
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. | |||||||||||||
feedback
|
|
I noticed that when I used | |||
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 The following has worked for me:
| ||||
|
feedback
|