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 are the applications of struts?
Which components are available using actioncontext map?
in struts how to use hibernate with struts>
What is actionservlet?
What is token used for?
What are disadvantages of Struts?
State an example of struts configuration file as an action parameter for action servlet.
What is the front controller in struts2?
Which design pattern is implemented by Struts2 interceptors?
What is the purpose of @stringlengthfieldvalidator annotation?
What is DynaActionForm?
How is token generated?
What are best practices to follow while developing Struts2 application?
What is difference between spring and struts?
What are the benefits of Struts framework?