Spring / Spring MVC Interview questions
How to create Controller in Spring MVC?
To create a Controller in Spring MVC, create a class and annotate it with @Controller and @RequestMapping annotations. @Controller declares this class as a controller and @RequestMapping defines the path mapping of request url to the controller.
More Related questions...