类 AbstractAnnotationConfigDispatcherServletInitializer
- java.lang.Object
- org.springframework.web.context.AbstractContextLoaderInitializer
- org.springframework.web.servlet.support.AbstractDispatcherServletInitializer
- org.springframework.web.servlet.support.AbstractAnnotationConfigDispatcherServletInitializer
- 所有已实现的接口:
WebApplicationInitializer
public abstract class AbstractAnnotationConfigDispatcherServletInitializer extends AbstractDispatcherServletInitializer
WebApplicationInitializerto register aDispatcherServletand use Java-based Spring configuration.Implementations are required to implement:
getRootConfigClasses()-- for "root" application context (non-web infrastructure) configuration.getServletConfigClasses()-- forDispatcherServletapplication context (Spring MVC infrastructure) configuration.
If an application context hierarchy is not required, applications may return all configuration via
getRootConfigClasses()and returnnullfromgetServletConfigClasses().- 从以下版本开始:
- 3.2
- 作者:
- Arjen Poutsma, Chris Beams
字段概要
从类继承的字段 org.springframework.web.servlet.support.AbstractDispatcherServletInitializer
DEFAULT_SERVLET_NAME
从类继承的字段 org.springframework.web.context.AbstractContextLoaderInitializer
logger
方法概要
所有方法 实例方法 抽象方法 具体方法 修饰符和类型 方法 说明 protected WebApplicationContextcreateRootApplicationContext()Create the "root" application context to be provided to theContextLoaderListener.protected WebApplicationContextcreateServletApplicationContext()Create a servlet application context to be provided to theDispatcherServlet.protected abstract Class<?>[]getRootConfigClasses()protected abstract Class<?>[]getServletConfigClasses()从类继承的方法 org.springframework.web.servlet.support.AbstractDispatcherServletInitializer
createDispatcherServlet, customizeRegistration, getServletApplicationContextInitializers, getServletFilters, getServletMappings, getServletName, isAsyncSupported, onStartup, registerDispatcherServlet, registerServletFilter
从类继承的方法 org.springframework.web.context.AbstractContextLoaderInitializer
getRootApplicationContextInitializers, registerContextLoaderListener
构造器详细资料
AbstractAnnotationConfigDispatcherServletInitializer
public AbstractAnnotationConfigDispatcherServletInitializer()
方法详细资料
createRootApplicationContext
@Nullable protected WebApplicationContext createRootApplicationContext()
Create the "root" application context to be provided to theContextLoaderListener.The returned context is delegated to
ContextLoaderListener(WebApplicationContext)and will be established as the parent context for anyDispatcherServletapplication contexts. As such, it typically contains middle-tier services, data sources, etc.This implementation creates an
AnnotationConfigWebApplicationContext, providing it the annotated classes returned bygetRootConfigClasses(). ReturnsnullifgetRootConfigClasses()returnsnull.- 指定者:
createRootApplicationContext在类中AbstractContextLoaderInitializer- 返回:
- the root application context, or
nullif a root context is not desired - 另请参阅:
AbstractDispatcherServletInitializer
createServletApplicationContext
protected WebApplicationContext createServletApplicationContext()
Create a servlet application context to be provided to theDispatcherServlet.The returned context is delegated to Spring's
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 bygetServletConfigClasses().
getRootConfigClasses
@Nullable protected abstract Class<?>[] getRootConfigClasses()
- 返回:
- the configuration for the root application context, or
nullif creation and registration of a root context is not desired
getServletConfigClasses
@Nullable protected abstract Class<?>[] getServletConfigClasses()
- 返回:
- the configuration for the Servlet application context, or
nullif all configuration is specified through root config classes.