What is the main difference between Mvc1 and Mvc2 Architecture??
Answer Posted / baba
There is nothing like MVC1 or MVC2. Sun specification talks
about Model - 1 and Model - 2 architecture. MVC or Model -
View - Controller architecture is equivalent to the Model -
2 architecture. In MVC the central idea is separation of
business logic and presentation logic, which was a
shortcoming of the Model - 1. You cannot have complex
business logic in your JSP, thats bad practice. In Struts
the ActionServlet is based on the FrontController Design
pattern. Ideally in MVC there are JSP pages to handle the
presentation logic, the model to encapsulate business data
and manipulation logic and a controller to co-ordinate
between the view and model.
| Is This Answer Correct ? | 32 Yes | 6 No |
Post New Answer View All Answers
What is value stack?
What is the default suffix for Struts2 action URI and how can we change it?
Why we use struts in java?
What is the difference between struts and spring? Explain
What steps are required to for an application migration from Struts1 to Struts2?
If the framework doesn’t do what I want, can I request that a feature be added?
What is the procedure of operation of a form tag?
Explain struts?
What is declarative exception handling in struts?
How to get data from the velocity page in a action class?
How you will enable front-end validation based on the xml in validation.xml?
What is the differences between struts1 and struts2?
What are the reasons for an error message not being displayed while developing struts application?
What is action support class in struts2?
What is controller in struts ?