What are the different type of controller available in Spring MVC?
What are the different type of controller available in Spring MVC? Spring MVC also offers several controller classes designed for specific purposes, including:AbstractUrlViewController.MultiActionController.ParameterizableViewController.ServletForwardingController.ServletWrappingController.UrlFilenameViewController. What are the two types of controllers in Spring MVC explain the difference? The @Controller is a common annotation which is used to mark a class as Spring MVC Controller while the @RestController is a special controller used in RESTFul web services and the equivalent of @Controller + @ResponseBody . Can we have multiple controllers in Spring MVC? In Spring MVC, we can create multiple controllers at a time. It is required to map each controller class...