Dto Flashcards
1
Q
when to use a DTO?
A
Transfer multiple data on One call.
Simplify the use of the model to the clients.
Pass data between layers.
2
Q
what disadvantages has DTO?
A
Send more data that needed. Require data maping (The Mapper)
3
Q
What DTO stands for?
A
Data transfer object
4
Q
What POJO stands for?
A
Plain old Java object
5
Q
Do you should implement complex logic on foreign data structures
A
No