docs: Add tutorial links to patterns (#1901)

* Add API Gateway tutorial links

* Add Model View Controller tutorial links

* Add Data Access Object tutorial links

* Add Data Transfer Object tutorial links

* Add Data Mapper tutorial links

Co-authored-by: Ilkka Seppälä <iluwatar@users.noreply.github.com>
This commit is contained in:
Vaibhav Agrawal
2022-11-10 01:02:06 +05:30
committed by GitHub
parent 84c63ce170
commit 7782203383
5 changed files with 28 additions and 1 deletions
+5
View File
@@ -107,6 +107,11 @@ Use the Data Transfer Object pattern when:
* When you want to boost the performance to get resources.
* You want reduced number of remote calls.
## Tutorials
* [Data Transfer Object Pattern in Java - Implementation and Mapping](https://stackabuse.com/data-transfer-object-pattern-in-java-implementation-and-mapping/)
* [The DTO Pattern (Data Transfer Object)](https://www.baeldung.com/java-dto-pattern)
## Credits
* [Design Pattern - Transfer Object Pattern](https://www.tutorialspoint.com/design_pattern/transfer_object_pattern.htm)