I've been trying to grok the org.apache.commons.beanutils library for a method/idiom to evaluate for equality all properties between 2 instances i.e. a generic equals() method for beans.
Is there a simple way to do this usnig this library? Or am I going about this the wrong way?
Thanks.
|
|
|||
|
|
|
Try EqualsBuilder.reflectionEquals() of commons-lang. EqualsBuilder has a set of methods to include all fields, all non-transient fields and all but certain fields. If all else fails, the code could serve as a good example how to implement this. |
|||||||||
|
|
To answer your question directly, you could use reflection to do equality checking of beans. There are a few snags you need to be aware of. There are rules regarding the behaviour of equals() and hashcode(). These rules talk about symmetry, consitency and reflexiveness which may be hard to do when your equals method behaves dynamically based on the other object you're passing in. Interesting read: http://www.geocities.com/technofundo/tech/java/equalhash.html Generally speaking, I think you are better off creating your own hashcode and equals methods. There are a fwe good plugins which can automatically generate that code for you based on the class properties. Having said all this, here are some (old style) methods for getting getters, setters and properties I wrote a long time ago:
The Getters:
And the Setters:
Maybe you can use this to roll your own. Edit: Ofcourse the reflectionbuilder in Aaron Digulla's answer is much better than my handywork. |
||||
|
|
As mentioned above, a reflection-based implementation will do what you want. I just wanted to warn you, that reflection is quite costly and such an implementation could be comparably slow. If you just need to do occasional comparisons, you will be fine. However, if you have huge datasets and frequent equality checks (e.g. filtering of big tables) you might get into trouble. |
|||
|