Implementing equals() and hashCode() for simple data POJOs is cluttering my code and maintaining is tedious.
What are the libraries handling this automatically?
I prefer bytecode instrumentation over AOP approach due to performance reasons.
Update: Topic of necessity of implementing equals() and hashCode() has been discussed, here's my point:
Isn't it better to have it done right upfront with minimal effort rather than digging in the code, adding hC/eq when it comes to it?
equalsfor you - only you know what makes two objects equal. What IDE are you using that doesn't generatehashCodefor you? And why are you having to do so much maintenance onequalsandhashCode? – Paul Aug 5 '11 at 16:12