Features of MVC1:
- Html or jsp files are used to code the presentation. To retrieve the data JavaBean can be used.
- In mvc1 archictecture all the view, control elements are implemented using Servlets or Jsp.
- In MVC1 there is tight coupling between page and model as data access is usually done using Custom tag or through java bean call.
- The MVC2 architecture removes the page centric property of MVC1 architecture by separating Presentation, control logic and the application state.
- In MVC2 architecture there is only one controller which receives all the request for the application and is responsible for taking appropriate action in response to each request.
No comments:
Post a Comment
Share your thoughts....