nDispatcherServlet
nDispatcherServlet (part of the org.springframework.web.servlet package) is the entry point to the world of Spring Web
MVC.
nHandler Mappings
nYou
can map handlers for incoming HTTP requests in the Spring application context file.These handlers are
typically controllers that are mapped to partial or complete URLs of incoming
requests
nThe handler mappings can also contain
optional interceptors, which are invoked before and after the
handler.