Does is necessary to overriding equals and hashcode method in DTO's. Because DTO's are just use for transfer data. Is there any best practice or something regarding this.
Thanks.
|
Does is necessary to overriding equals and hashcode method in DTO's. Because DTO's are just use for transfer data. Is there any best practice or something regarding this. Thanks. |
|||
|
|
|
This article offers one piece of advice:
Surely DTOs are used for more than just transfer, we do keep them, sort them, cache them ... In practice do folks provide equals and hash? No not always. Should we? I think so. |
|||||||||
|
|
Whether or not you need to provide If you use them with one or more Collections, you should provide the implementation for the appropriate method. Almost all Collections call |
||||
|
|