I cannot find difference between them. Does anyone know how to differentiate them?
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
DTO (Data transfer object) : Is a Core J2EE design pattern used for transferring data within the system.DTO Pattern
POJO (Plain Old Java Object) : It is just an acronym people use for suggesting that is a simple java object (which nowadays is heavily annotated for doing some meaning full work).
DTO Pattern
J2EE Pattern Catalog
DTO is pojo, but pojo is not dto, because pojo can have more behavior but DTO just basically no behavior
Oracle document has clear description.