2017-08-11 16:51:46 +05:30
|
|
|
---
|
|
|
|
layout: pattern
|
|
|
|
title: Data Transfer Object
|
|
|
|
folder: data-transfer-object
|
|
|
|
permalink: /patterns/data-transfer-object/
|
|
|
|
categories: Architectural
|
|
|
|
tags:
|
2019-12-13 21:09:28 +02:00
|
|
|
- Performance
|
2017-08-11 16:51:46 +05:30
|
|
|
---
|
|
|
|
|
|
|
|
## Intent
|
|
|
|
Pass data with multiple attributes in one shot from client to server,
|
|
|
|
to avoid multiple calls to remote server.
|
|
|
|
|
2019-12-07 20:01:13 +02:00
|
|
|
## Class diagram
|
2017-08-11 16:51:46 +05:30
|
|
|

|
|
|
|
|
|
|
|
## 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
|
|
|
|
|
|
|
|
* [Design Pattern - Transfer Object Pattern](https://www.tutorialspoint.com/design_pattern/transfer_object_pattern.htm)
|
|
|
|
* [Data Transfer Object](https://msdn.microsoft.com/en-us/library/ff649585.aspx)
|
2020-07-07 20:05:35 +03:00
|
|
|
* [J2EE Design Patterns](https://www.amazon.com/gp/product/0596004273/ref=as_li_tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=0596004273&linkCode=as2&tag=javadesignpat-20&linkId=f27d2644fbe5026ea448791a8ad09c94)
|
2020-07-07 21:19:14 +03:00
|
|
|
* [Patterns of Enterprise Application Architecture](https://www.amazon.com/gp/product/0321127420/ref=as_li_tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=0321127420&linkCode=as2&tag=javadesignpat-20&linkId=014237a67c9d46f384b35e10151956bd)
|