top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is use of Hibernate Session merge() call?

+1 vote
287 views
What is use of Hibernate Session merge() call?
posted Dec 3, 2017 by Gn Guruswamy

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Hibernate merge can be used to update existing values, however this method create a copy from the passed entity object and return it. The returned object is part of persistent context and tracked for any changes, passed object is not tracked. For example program, read Hibernate merge.

answer Dec 4, 2017 by Manikandan J
...