I have two classes that know about each other - Foo and Bar. I load a Foo with a specified id, which loads the Bar but the Foo inside the Bar is not the same instance.
The problem only occurs when specifying the Foo by id: I have another class FooList that aggregates Foo and upon loading a FooList the references to Foo inside Bar are the same as in the list.
I'm not sure if using session.createSQLQuery() in the first case has anything to do with it? Does anyone have any other idea about how to fix this?
Cheers,
James
|