DispatcherServlet (actually a servlet) is the
front controller in Spring MVC that intercepts every request and then dispatches/forwards requests to an appropriate
controller. When a web request is sent to a
Spring MVC application, dispatcher servlet first receives the request.
read more >>