What is MVC Architecture?
Answer Posted / hrishikesh nandanwar
Model-View-Controller (MVC)
Model-View-Controller architecture is used for interactive
web-applications. This model minimizes the coupling between
business logic and data presentation to web user. This
model divides the web based application into three layers:
1. Model: Model domain contains the business logics and
functions that manipulate the business data. It provides
updated information to view domain and also gives response
to query. And the controller can access the functionality
which is encapsulated in the model.
2. View: View is responsible for presentation aspect of
application according to the model data and also
responsible to forward query response to the controller.
3. Controller: Controller accepts and intercepts user
requests and controls the business objects to fulfill these
requests. An application has one controller for related
functionality. Controller can also be depends on the type
of clients.
| Is This Answer Correct ? | 35 Yes | 17 No |
Post New Answer View All Answers
What is the difference between struts and spring? Explain
If the framework doesn’t do what I want, can I request that a feature be added?
What is controller in struts2?
What do you mean by a custom tag?
1.can we transfer a request from one struts application to another struts application? 2. how many types of action servlets r there what r they
What is struts-default package and what are it’s benefits?
What do you mean by ognl?
What are the sections into which a strut configuration file can be divided?
What is the differences between struts1 and struts2?
What do you know about validation plugin ?
How is the action mapping specified?
Why use struts framework in java?
What is the purpose of @before?
What is life cycle of an interceptor?
What is form bean in struts?