Spring / Spring MVC Interview questions
What is a Controller in Spring MVC framework?
A Controller class is responsible to handle different kind of client requests based on the request mappings. We can create a controller class by using @Controller annotation. Usually it?s used with @RequestMapping annotation to define handler methods for specific URI mapping.
More Related questions...