February 2015
Intermediate to advanced
178 pages
3h 47m
English
The Model View Controller (MVC) is a widely used web development pattern. The MVC pattern defines three interconnected components, namely model, view, and controller.
The model represents the application data, logic, or business rules.
The view is a representation of information or a model. A model can have multiple views, for example, marks of a student can be represented in a tabular format or graphical chart.
The controller accepts client requests and initiates commands to either update the model or change the view.
The controller controls the flow of the application. In JEE applications, a controller is usually implemented as a servlet. A controller servlet intercepts requests and then maps each request ...
Read now
Unlock full access