What is Front Controller Pattern in Spring MVC?

Nikitatunali
Nikitatunali

Posted On: Apr 01, 2020

 

The Front Controller design pattern in Spring MVC provides a centralized point for controlling and managing web requests. It handles all the user request and processes the request as per the mapping. This centralized handler can also do authentication, authorization, logging, or tracking of the request and then pass the request to the corresponding handlers.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Java MVC Interview Questions

    What is MVC in Java?

    MVC (Model-View-Controller) pattern is an application design model that is comprised of three interconnected parts. Here, the model represents the object. It can also have logic to update the controll...

    Java MVC Interview Questions

    What is Spring MVC framework?

    Spring MVC framework is a type of Model-View-Controller architecture that provides components to develop flexible and loosely coupled web applications. This Java framework provides the DispatchServlet...

    Java MVC Interview Questions

    What is DispatcherServlet in Spring MVC?

    The DispatcherServlet class s used to receive the incoming request and map the request to the right resource like controllers, models, and views. Apart from acting as a controller, the DispatchSetvler...