public abstract class AbstractAnnotationConfigDispatcherServletInitializer extends AbstractDispatcherServletInitializer
WebApplicationInitializer
 implementations that register a
 DispatcherServlet
 configured with annotated classes, e.g. Spring's
 @Configuration classes.
 Concrete implementations are required to implement getRootConfigClasses()
 and getServletConfigClasses() as well as AbstractDispatcherServletInitializer.getServletMappings().
 Further template and customization methods are provided by
 AbstractDispatcherServletInitializer.
 
This is the preferred approach for applications that use Java-based Spring configuration.
DEFAULT_SERVLET_NAMElogger| Constructor and Description | 
|---|
| AbstractAnnotationConfigDispatcherServletInitializer() | 
| Modifier and Type | Method and Description | 
|---|---|
| protected WebApplicationContext | createRootApplicationContext()Create the "root" application context to be provided to the
  ContextLoaderListener. | 
| protected WebApplicationContext | createServletApplicationContext()Create a servlet application context to be provided to the  DispatcherServlet. | 
| protected abstract Class<?>[] | getRootConfigClasses() | 
| protected abstract Class<?>[] | getServletConfigClasses()Specify  @Configurationand/or@Componentclasses to be
 provided to the dispatcher servlet
 application context. | 
createDispatcherServlet, customizeRegistration, getServletApplicationContextInitializers, getServletFilters, getServletMappings, getServletName, isAsyncSupported, onStartup, registerDispatcherServlet, registerServletFiltergetRootApplicationContextInitializers, registerContextLoaderListenerpublic AbstractAnnotationConfigDispatcherServletInitializer()
protected WebApplicationContext createRootApplicationContext()
ContextLoaderListener.
 The returned context is delegated to
 ContextLoaderListener.ContextLoaderListener(WebApplicationContext) and will
 be established as the parent context for any DispatcherServlet application
 contexts. As such, it typically contains middle-tier services, data sources, etc.
 
This implementation creates an AnnotationConfigWebApplicationContext,
 providing it the annotated classes returned by getRootConfigClasses().
 Returns null if getRootConfigClasses() returns null.
createRootApplicationContext in class AbstractContextLoaderInitializernull if a root context is not
 desiredAbstractDispatcherServletInitializerprotected WebApplicationContext createServletApplicationContext()
DispatcherServlet.
 The returned context is delegated to Spring's
 DispatcherServlet.DispatcherServlet(WebApplicationContext). As such,
 it typically contains controllers, view resolvers, locale resolvers, and other
 web-related beans.
 
This implementation creates an AnnotationConfigWebApplicationContext,
 providing it the annotated classes returned by getServletConfigClasses().
protected abstract Class<?>[] getRootConfigClasses()
null
 if creation and registration of a root context is not desiredprotected abstract Class<?>[] getServletConfigClasses()
@Configuration
 and/or @Component classes to be
 provided to the dispatcher servlet
 application context.null if all configuration is specified through root config classes.