Skip to content

Latest commit

 

History

History

data-transfer-object

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
layout title folder permalink categories tags
pattern
Data Transfer Object
data-transfer-object
/patterns/data-transfer-object/
Architectural
Java
KISS
YAGNI
Difficulty-Beginner

Intent

Pass data with multiple attributes in one shot from client to server, to avoid multiple calls to remote server.

alt text

Applicability

Use the Data Transfer Object pattern when

  • The client is asking for multiple information. And the information is related.
  • When you want to boost the performance to get resources.
  • You want reduced number of remote calls.

Credits