InterviewSolution
Saved Bookmarks
| 1. |
What is Controller in Spring MVC framework? |
|
Answer» Controllers provide access to the application behavior that you typically define through a service interface. Controllers interpret user input and transform it into a model that is represented to the user by the view. Spring implements a controller in a very abstract way, which enables you to create a wide variety of controllers. |
|