You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Review the code to determine where merge is used intentionally to update the entity and where it isn't.
Use EntityManager.find or another read operation without side effects to replace the calls to EntityManager.merge where it is used only to get a managed entity.
The text was updated successfully, but these errors were encountered:
As @hoangphamEclipse points out in EclipseFdn/open-vsx.org#2062 (comment),
EntityManager.merge
updates a JPA entity.Review the code to determine where
merge
is used intentionally to update the entity and where it isn't.Use
EntityManager.find
or another read operation without side effects to replace the calls toEntityManager.merge
where it is used only to get a managed entity.The text was updated successfully, but these errors were encountered: