类 AbstractContextLoaderInitializer
- java.lang.Object
- org.springframework.web.context.AbstractContextLoaderInitializer
- 所有已实现的接口:
WebApplicationInitializer
public abstract class AbstractContextLoaderInitializer extends Object implements WebApplicationInitializer
Convenient base class forWebApplicationInitializerimplementations that register aContextLoaderListenerin the servlet context.The only method required to be implemented by subclasses is
createRootApplicationContext(), which gets invoked fromregisterContextLoaderListener(ServletContext).- 从以下版本开始:
- 3.2
- 作者:
- Arjen Poutsma, Chris Beams, Juergen Hoeller
构造器概要
构造器 构造器 说明 AbstractContextLoaderInitializer()
方法概要
所有方法 实例方法 抽象方法 具体方法 修饰符和类型 方法 说明 protected abstract WebApplicationContextcreateRootApplicationContext()Create the "root" application context to be provided to theContextLoaderListener.protected ApplicationContextInitializer<?>[]getRootApplicationContextInitializers()Specify application context initializers to be applied to the root application context that theContextLoaderListeneris being created with.voidonStartup(ServletContext servletContext)Configure the givenServletContextwith any servlets, filters, listeners context-params and attributes necessary for initializing this web application.protected voidregisterContextLoaderListener(ServletContext servletContext)Register aContextLoaderListeneragainst the given servlet context.
构造器详细资料
AbstractContextLoaderInitializer
public AbstractContextLoaderInitializer()
方法详细资料
onStartup
public void onStartup(ServletContext servletContext) throws ServletException
从接口复制的说明:WebApplicationInitializerConfigure the givenServletContextwith any servlets, filters, listeners context-params and attributes necessary for initializing this web application. See examples above.- 指定者:
onStartup在接口中WebApplicationInitializer- 参数:
servletContext- theServletContextto initialize- 抛出:
ServletException- if any call against the givenServletContextthrows aServletException
registerContextLoaderListener
protected void registerContextLoaderListener(ServletContext servletContext)
Register aContextLoaderListeneragainst the given servlet context. TheContextLoaderListeneris initialized with the application context returned from thecreateRootApplicationContext()template method.- 参数:
servletContext- the servlet context to register the listener against
createRootApplicationContext
@Nullable protected abstract 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.- 返回:
- the root application context, or
nullif a root context is not desired - 另请参阅:
AbstractDispatcherServletInitializer
getRootApplicationContextInitializers
@Nullable protected ApplicationContextInitializer<?>[] getRootApplicationContextInitializers()
Specify application context initializers to be applied to the root application context that theContextLoaderListeneris being created with.