Google News
logo
Java Spring MVC - Interview Questions
What is the front controller of Spring MVC?
The front controller is a DispatcherServlet class present in org.springframework.web.servlet package. It dispatches the request to the appropriate controller and manages the flow of the application. It is required to specify the DispatcherServlet class in the web.xml file.
Advertisement