FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

java-design-patterns/data-transfer-object at master · CCodingMan/java-design-patterns · GitHub

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

layout pattern
title Data Transfer Object
folder data-transfer-object
permalink /patterns/data-transfer-object/
categories Architectural
tags
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.

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


Back | FazBrowse Home | New Git URL