Regular |
|
Joined: Tue Mar 07, 2006 11:18 am Posts: 54 Location: Berlin
|
Hey,
are your using detached objects within your application? If you have a detached instance0 of Class Foo and you fetch the same instance in a new session, say instance1 and you put your instance0 back into the session using a session.update(instance0) / session.merge(instance0) you will end up with this kind of Exception.
There can't be more than one instance in a session representing the same single row (entity)
hope that helps...
simon
|
|