InterviewSolution
Saved Bookmarks
| 1. |
What is MVC in JSP? |
|
Answer» In MVC,
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. |
|