Hi,
*full stacktrace*, not last 2 lines :)
Assuming this is what am thinking it is....
This error at object loading time is quite typical to an object trying to modify linked objet during Hibernate initialisation process.
example:
Code:
Class A {
Set B
setB(Set bs){
...
// For some b in bs
b.setSomeRelationToA(this);
}
You can not modify other classes that can be potentially managed by hibernate inside a setter accessed by hibernate. A setter is made to set a value. If it begin to modify other object, then it is not a setter anymore.