1.

What is MVC in JSP?

Answer»

In MVC,

  • M stands for Model
  • V stands for View
  • C stands for the controller.

It is an architecture that separates business LOGIC, presentation, and data. In this, the flow STARTS from the view layer, where the request is raised and processed in the controller layer. This is then SENT to the model layer to INSERT data and get back the success or failure message.



Discussion

No Comment Found