Tuesday, April 16, 2019

MVC system design - Model–view–controller

Model–View–Controller (usually known as MVC) is an architectural pattern commonly used for developing user interfaces that divides an application into three interconnected parts. This is done to separate internal representations of information from the ways information is presented to and accepted from the user.[1][2] The MVC design pattern decouples these major components allowing for efficient code reuse and parallel development.

Traditionally used for desktop graphical user interfaces (GUIs), this architecture has become popular for designing web applications.[3] Popular programming languages like Java, C#, Python, Ruby, PHP have MVC frameworks that are used in web application development straight out of the box.

Source: https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller

Source: https://cscie12.dce.harvard.edu/lecture_notes/2007-08/20080402/slide34.html