DTOs are widely used and they 'solve' real problems, do they?
Problems
Anemic Object
Inconsistent Data
Duplicated logic
Duplicated structure
Class Polluting
Information Hiding Violation
Code repeated among mutators, accessors, serializers, parsers
Ripple Effect
Data integrity
Solutions
Transfer anemic data on arrays.
Use real business objects.
If we want to transfer partial objects: use proxies or null objects to break the reference graph.
Sample Code
Wrong
Right
Detection
We can use the same anemic object detectors.
We can check for anemic classes with no business object behavior (removing serializes, constructors, mutators etc).
# Tags
- Anemic
Conclusion
DTOs are a tool and an established practice in some languages. We should use them with care and responsibility.
If we need to disassemble our objects in order to send them away from our realms, we need to be extremely cautioned. Since dismembered objects have no integrity considerations.
His author warns us about its actual abuse.
Relations
Code Smell 01 - Anemic Models
Maxi Contieri ・ Oct 20 '20
Code Smell 20 - Premature Optimization
Maxi Contieri ・ Nov 8 '20
More info
The best smells are something that's easy to spot and most of time lead you to really interesting problems. Data classes (classes with all data and no behavior) are good examples of this. You look at them and ask yourself what behavior should be in this class.
Martin Fowler
Top comments (0)