Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » EclipseLink » How does EclipseLink use equals() and hashCode()?
How does EclipseLink use equals() and hashCode()? [message #787124] Tue, 31 January 2012 07:26 Go to next message
janne mattila is currently offline janne mattilaFriend
Messages: 2
Registered: January 2012
Junior Member
I'm thinking about how to implement equals and hashCode in my entities. What requirements does EclipseLink have for these methods? Does it use them internally?

I found a discussion at stackoverflow (question 6534721, "equals-and-hashcode-for-jpa-entities-using-eclipselink") where James suggests that EclipseLink does not use equals and hashCode internally and won't be broken by their implementations. Is this really correct? Another post (dev.eclipse.org -> mhonarc/lists/eclipselink-users/msg02241.html) seems to suggest that it is not that simple: "EclipseLink generally has no dependencies on equals and hashCode unlike other JPA providers, but we still require to be able to remove objects from collections, and that requires that the hashCode and equals are at least correctly implemented. (James Sutherland)"

(sorry, cant post links until I have posted more than 5 messages.)

- one option would be to implement equals based on primary key. In this case hashCode can change while entity is stored in a set (when a new entity gets persisted and primary key is changed from null to some value). Would this break something inside eclipselink?

At a quick look I did not find a mention about implementing equals/hashCode in the JPA specification. Doesn't this mean that I should be able to create my custom equals/hashCode methods freely without worrying about the JPA implementation? Or what would this

public int hashCode() {
return random.nextInt(255);
}

break?

Of course I need to take into consideration how equals/hashCode implementations affect my application code, but now I'm interested in what happens in the JPA stack.
Re: How does EclipseLink use equals() and hashCode()? [message #789193 is a reply to message #787124] Thu, 02 February 2012 18:14 Go to previous message
James Sutherland is currently offline James SutherlandFriend
Messages: 1939
Registered: July 2009
Location: Ottawa, Canada
Senior Member

EclipseLink has no specific dependencies on equals and hashCode. You can use the default Object implementation, or your own.

If you use an equals/hashCode that is plain wrong, then you can have issues with Java in general in using your objects in Maps and Collections and other places. These can affect your persistence, as if you use a List, Set or Map in your object model, and for instance implement your brilliant random hashCode, then your Maps and Sets will not work correctly. If you implement a similarly brilliant equals, then Lists will not work correctly.


James : Wiki : Book : Blog : Twitter
Re: How does EclipseLink use equals() and hashCode()? [message #789197 is a reply to message #787124] Thu, 02 February 2012 18:14 Go to previous message
James Sutherland is currently offline James SutherlandFriend
Messages: 1939
Registered: July 2009
Location: Ottawa, Canada
Senior Member

EclipseLink has no specific dependencies on equals and hashCode. You can use the default Object implementation, or your own.

If you use an equals/hashCode that is plain wrong, then you can have issues with Java in general in using your objects in Maps and Collections and other places. These can affect your persistence, as if you use a List, Set or Map in your object model, and for instance implement your brilliant random hashCode, then your Maps and Sets will not work correctly. If you implement a similarly brilliant equals, then Lists will not work correctly.
--
James : http://wiki.eclipse.org/EclipseLink : http://en.wikibooks.org/wiki/Java_Persistence : http://java-persistence-performance.blogspot.com/


James : Wiki : Book : Blog : Twitter
Previous Topic:composite key order
Next Topic:MOXy: xml-mapping-metadata-complete problem
Goto Forum:
  


Current Time: Fri Apr 19 21:37:06 GMT 2024

Powered by FUDForum. Page generated in 0.02838 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top