Files
java-design-patterns/model-view-controller/README.md
T
Vaibhav Agrawal 7782203383 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>
2022-11-09 21:32:06 +02:00

1.7 KiB

title, category, language, tags
title category language tags
Model-View-Controller Architectural en
Decoupling

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

alt text

Applicability

Use the Model-View-Controller pattern when

  • You want to clearly separate the domain data from its user interface representation

Tutorials

Credits