0% found this document useful (0 votes)
41 views

Model 1 Architecture

Model 1 architecture separates the browser, JSP and model where requests go directly from browser to model. Model 2 MVC separates the application logic from the user interface into three parts: the model manages data and behavior, the view renders the model data for display, and the controller receives input and directs the model and view.

Uploaded by

Sai Sandeep
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
41 views

Model 1 Architecture

Model 1 architecture separates the browser, JSP and model where requests go directly from browser to model. Model 2 MVC separates the application logic from the user interface into three parts: the model manages data and behavior, the view renders the model data for display, and the controller receives input and directs the model and view.

Uploaded by

Sai Sandeep
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Model 1 architecture is interaction between browser, JSP and the

model. Its an outdated technology.


What is Model 2 MVC?
MVC is a software architecture - the structure of the system - that
separates domain/application/business (whatever you prefer) logic
from the rest of the user interface. It does this by separating the
application into three parts: the model, the view, and the controller.
The model manages fundamental behaviors and data of the
application. It can respond to requests for information, respond to
instructions to change the state of its information, and even to notify
observers in event-driven systems when information changes. This
could be a database, or any number of data structures or storage
systems. In short, it is the data and data-management of the
application.
JSP :The view effectively provides the user interface element of the
application. It'll render data from the model into a form that is suitable
for the user interface.
The controller receives user input and makes calls to model objects
and the view to perform appropriate actions.All in all, these three
components work together to create the three basic components of
MVC.
Modified Model 2 MVC front controller
From browser all requests go to single front controller and then invoke
particular controller.
The controller talks to business part which view to render
Example is dispatcher servlet

You might also like