I have a problem here
Here's the error I got
Code:
org.hibernate.NonUniqueObjectException: a different object with the same identifier value was already associated with the session: 3000035, of class: com.file.member.Member
the part of the code
Code:
status = getBroker(session).updateMember(member);
commitTransaction();
after this part i played a catch exception. And this was the error that brought me here. so i can't set the status to true coz it ran straight to the catch exception phase.
Basically how do i replace an object with the same identifier value as above?
Does anyone has any clues?