Wednesday, May 2, 2012

MVC with JSP

Model View Controller is a architectural design pattern.
  • Model is business logic.
  • View is user interface.
  • Controller handles the user input.
Why MVC?
  • View is free of any business logic. So looks simple and readable.
  • Business logic within the Model can be reused for more than one views.

No comments:

Post a Comment