max wrote:
dont use a db identifier in equals/hashcode.
http://www.hibernate.org/109.html/max
The thrust of the article is that the reason you shouldn't use a db identifier is that it is unavailable to you until the object is saved. Thus is you are adding 'many' objects to a 'one' set, the IDs will be null until the 'one' record is saved (and only the last 'many' object will be stored).
Fair enough, it's a good point, and one whose consequences I had got around hitherto by only ever storing one 'many' object at a time (i.e., saving the parent after each addition of a child to the set). Nonetheless, I have changed this now to using a 'key' property in my equals/hashcode, the 'key' being assigned from a sequence generator. Thus I have a unique key for the child record before the parent is saved, which is no doubt better and gives me more flexibility. It still doesn't get me any further with my original question, though, does it? I am still left with the issue of how to update a specific object in a set. Given the prevalence of sets in the Hibernate examples, I'm surprised not to see this issue discussed more.