Spring MVC Annotation-Based Configuration Without web.xml
Servlet 3.0 Container Initialization Servlet 3.0 introduced the capability to initialize the ServletContext without using web.xml. The specification provides the ServletContainerInitializer interface, which containers automatically discover and invoke during startup. Spring 3.1+ provides SpringServl...