Class AbstractDispatcherServletInitializer
- java.lang.Object
- org.springframework.web.context.AbstractContextLoaderInitializer
- org.springframework.web.servlet.support.AbstractDispatcherServletInitializer
- All Implemented Interfaces:
WebApplicationInitializer
- Direct Known Subclasses:
AbstractAnnotationConfigDispatcherServletInitializer
public abstract class AbstractDispatcherServletInitializer extends AbstractContextLoaderInitializer
Base class forWebApplicationInitializerimplementations that register aDispatcherServletin the servlet context.Concrete implementations are required to implement
createServletApplicationContext(), as well asgetServletMappings(), both of which get invoked fromregisterDispatcherServlet(ServletContext). Further customization can be achieved by overridingcustomizeRegistration(ServletRegistration.Dynamic).Because this class extends from
AbstractContextLoaderInitializer, concrete implementations are also required to implementAbstractContextLoaderInitializer.createRootApplicationContext()to set up a parent "root" application context. If a root context is not desired, implementations can simply returnnullin thecreateRootApplicationContext()implementation.- Since:
- 3.2
- Author:
- Arjen Poutsma, Chris Beams, Rossen Stoyanchev, Juergen Hoeller, Stephane Nicoll
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_SERVLET_NAMEThe default servlet name.Fields inherited from class org.springframework.web.context.AbstractContextLoaderInitializer
logger
Constructor Summary
Constructors Constructor Description AbstractDispatcherServletInitializer()
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected FrameworkServletcreateDispatcherServlet(WebApplicationContext servletAppContext)Create aDispatcherServlet(or other kind ofFrameworkServlet-derived dispatcher) with the specifiedWebApplicationContext.protected abstract WebApplicationContextcreateServletApplicationContext()Create a servlet application context to be provided to theDispatcherServlet.protected voidcustomizeRegistration(ServletRegistration.Dynamic registration)Optionally perform further registration customization onceregisterDispatcherServlet(ServletContext)has completed.protected ApplicationContextInitializer<?>[]getServletApplicationContextInitializers()Specify application context initializers to be applied to the servlet-specific application context that theDispatcherServletis being created with.protected Filter[]getServletFilters()Specify filters to add and map to theDispatcherServlet.protected abstract String[]getServletMappings()Specify the servlet mapping(s) for theDispatcherServlet— for example"/","/app", etc.protected StringgetServletName()Return the name under which theDispatcherServletwill be registered.protected booleanisAsyncSupported()A single place to control theasyncSupportedflag for theDispatcherServletand all filters added viagetServletFilters().voidonStartup(ServletContext servletContext)Configure the givenServletContextwith any servlets, filters, listeners context-params and attributes necessary for initializing this web application.protected voidregisterDispatcherServlet(ServletContext servletContext)Register aDispatcherServletagainst the given servlet context.protected FilterRegistration.DynamicregisterServletFilter(ServletContext servletContext, Filter filter)Add the given filter to the ServletContext and map it to theDispatcherServletas follows: a default filter name is chosen based on its concrete type theasyncSupportedflag is set depending on the return value ofasyncSupporteda filter mapping is created with dispatcher typesREQUEST,FORWARD,INCLUDE, and conditionallyASYNCdepending on the return value ofasyncSupportedMethods inherited from class org.springframework.web.context.AbstractContextLoaderInitializer
createRootApplicationContext, getRootApplicationContextInitializers, registerContextLoaderListener
Field Detail
DEFAULT_SERVLET_NAME
public static final String DEFAULT_SERVLET_NAME
The default servlet name. Can be customized by overridinggetServletName().- See Also:
- Constant Field Values
Constructor Detail
AbstractDispatcherServletInitializer
public AbstractDispatcherServletInitializer()
Method Detail
onStartup
public void onStartup(ServletContext servletContext) throws ServletException
Description copied from interface:WebApplicationInitializerConfigure the givenServletContextwith any servlets, filters, listeners context-params and attributes necessary for initializing this web application. See examples above.- Specified by:
onStartupin interfaceWebApplicationInitializer- Overrides:
onStartupin classAbstractContextLoaderInitializer- Parameters:
servletContext- theServletContextto initialize- Throws:
ServletException- if any call against the givenServletContextthrows aServletException
registerDispatcherServlet
protected void registerDispatcherServlet(ServletContext servletContext)
Register aDispatcherServletagainst the given servlet context.This method will create a
DispatcherServletwith the name returned bygetServletName(), initializing it with the application context returned fromcreateServletApplicationContext(), and mapping it to the patterns returned fromgetServletMappings().Further customization can be achieved by overriding
customizeRegistration(ServletRegistration.Dynamic)orcreateDispatcherServlet(WebApplicationContext).- Parameters:
servletContext- the context to register the servlet against
getServletName
protected String getServletName()
Return the name under which theDispatcherServletwill be registered. Defaults toDEFAULT_SERVLET_NAME.
createServletApplicationContext
protected abstract 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.
createDispatcherServlet
protected FrameworkServlet createDispatcherServlet(WebApplicationContext servletAppContext)
Create aDispatcherServlet(or other kind ofFrameworkServlet-derived dispatcher) with the specifiedWebApplicationContext.Note: This allows for any
FrameworkServletsubclass as of 4.2.3. Previously, it insisted on returning aDispatcherServletor subclass thereof.
getServletApplicationContextInitializers
protected ApplicationContextInitializer<?>[] getServletApplicationContextInitializers()
Specify application context initializers to be applied to the servlet-specific application context that theDispatcherServletis being created with.
getServletMappings
protected abstract String[] getServletMappings()
Specify the servlet mapping(s) for theDispatcherServlet— for example"/","/app", etc.
getServletFilters
protected Filter[] getServletFilters()
Specify filters to add and map to theDispatcherServlet.- Returns:
- an array of filters or
null - See Also:
registerServletFilter(ServletContext, Filter)
registerServletFilter
protected FilterRegistration.Dynamic registerServletFilter(ServletContext servletContext, Filter filter)
Add the given filter to the ServletContext and map it to theDispatcherServletas follows:- a default filter name is chosen based on its concrete type
- the
asyncSupportedflag is set depending on the return value ofasyncSupported - a filter mapping is created with dispatcher types
REQUEST,FORWARD,INCLUDE, and conditionallyASYNCdepending on the return value ofasyncSupported
If the above defaults are not suitable or insufficient, override this method and register filters directly with the
ServletContext.- Parameters:
servletContext- the servlet context to register filters withfilter- the filter to be registered- Returns:
- the filter registration
isAsyncSupported
protected boolean isAsyncSupported()
A single place to control theasyncSupportedflag for theDispatcherServletand all filters added viagetServletFilters().The default value is "true".
customizeRegistration
protected void customizeRegistration(ServletRegistration.Dynamic registration)
Optionally perform further registration customization onceregisterDispatcherServlet(ServletContext)has completed.- Parameters:
registration- theDispatcherServletregistration to be customized- See Also:
registerDispatcherServlet(ServletContext)