mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-14 10:58:42 +00:00
7782203383
* 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>
1.7 KiB
1.7 KiB
title, category, language, tags
| title | category | language | tags | |
|---|---|---|---|---|
| Model-View-Controller | Architectural | en |
|
Intent
Separate the user interface into three interconnected components: the model, the view and the controller. Let the model manage the data, the view display the data and the controller mediate updating the data and redrawing the display.
Class diagram
Applicability
Use the Model-View-Controller pattern when
- You want to clearly separate the domain data from its user interface representation
