I'm curious to know, what people here think about using org.apache.commons.lang.builder EqualsBuilder/HashCodeBuilder for implementing the equals/hashcode? Would it be a better practice than writing your own? Does it play well with Hibernate? What's your opinion?
|
The commons/lang builders are great and I have been using them for years without noticeable performance overhead (with and without hibernate). But as Alain writes, the Guava way is even nicer: Here's a sample Bean:
Here's equals() and hashCode() implemented with Commons/Lang:
and here with Guava:
As you can see the Guava version is shorter and avoids superfluous helper objects. In case of equals, it even allows for short-circuiting the evaluation if an earlier So: yes, the commons lang builders are very preferable over manually constructed And a note about Hibernate: be careful about using lazy collections in your equals(), hashCode() and toString() implementations. That will fail miserably if you don't have an open Session. Note (about equals()): a) in both versions of equals() above, you might want to use one or both of these shortcuts also:
b) depending on your interpretation of the equals() contract, you might also change the line(s)
to
If you use the second version, you probably also want to call
(although it's about Note (inspired by Comment from kayahr)
|
|||||||||||||
|
|
If you don't to write your own, there is also the possibility to use google guava (formerly google collections) |
|||
|
|
|
If you do not want to depend on a 3rd party library (maybe you are running an a device with limited resources) and you even do not want to type your own methods, you can also let the IDE do the job, e.g. in eclipse use
You will get 'native' code which you can configure as you like and which you have to support on changes. Example (eclipse Juno):
} |
|||||||||||||
|
|
The EqualsBuilder and HashCodeBuilder have two main aspects that are different from manually written code:
The EqualsBuilder and HashCodeBuilder make it easier to compare fields that could be null. With manually writen code this creates a lot of boilerplate. The EqualsBuilder will on the other hand create an instance per equals method call. If your equals methods are call often this will create a lot of instances. For Hibernate the equals and hashCode implementation make no difference. They are just an implementation detail. For almost all domain objects loaded with hibernate the runtime overhead (even without escape analysis) of the Builder can be ignored. Database and communication overhead will be significant. As skaffman mentioned the reflection version cannot be used in production code. Reflection will be to slow and the "implementation" will not be correct for all but the simplest classes. Taking all members into account is also dangerous as newly introduced members change the equals method behaviour. The reflection version can be useful in test code. |
|||||||
|
reflectionEqualsandreflectionHashcodefunctions; the performance is an absolute killer. – skaffman Feb 18 '11 at 8:18