What is MVC Architecture?
Answer Posted / satya
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 ? | 14 Yes | 18 No |
Post New Answer View All Answers
What is struts 2 framework in java?
How do you find the struts version being used in a project?
What is the purpose of constant tag in struts.xml?
What is the purpose of execute method of action class?
What configurations are stored in struts configuration file ?
Can we handle exceptions in Struts programmatically?
Can we use struts and spring together?
What is the front controller in struts2?
What kind of mvc is struts 2?
Can a reducer dispatch an action?
What is the role of action class in struts?
Explain the life cycle of a request in struct2 application?
How can duplicate form submission be handled in struts 2?
What are different ways to create Action classes in Struts2?
What is the purpose of @element?