Uses of Interface
org.springframework.web.context.WebApplicationContext
Packages that use WebApplicationContext Package Description org.springframework.test.web.servlet Contains server-side support for testing Spring MVC applications.org.springframework.test.web.servlet.htmlunit Server-side support for testing Spring MVC applications withMockMvcand HtmlUnit.org.springframework.test.web.servlet.htmlunit.webdriver Server-side support for testing Spring MVC applications withMockMvcand the SeleniumHtmlUnitDriver.org.springframework.test.web.servlet.setup Contains built-inMockMvcBuilderimplementations.org.springframework.web.bind.support Support classes for web data binding.org.springframework.web.context Contains a variant of the application context interface for web applications, and the ContextLoaderListener that bootstraps a root web application context.org.springframework.web.context.support Classes supporting theorg.springframework.web.contextpackage, such as WebApplicationContext implementations and various utility classes.org.springframework.web.filter Provides generic filter base classes allowing for bean-style configuration.org.springframework.web.jsf Support classes for integrating a JSF web layer with a Spring service layer which is hosted in a Spring root WebApplicationContext.org.springframework.web.jsf.el ELResolvers for integrating a JSF web layer with a Spring service layer which is hosted in a Spring root WebApplicationContext.org.springframework.web.servlet Provides servlets that integrate with the application context infrastructure, and the core interfaces and classes for the Spring web MVC framework.org.springframework.web.servlet.support Support classes for Spring's web MVC framework.org.springframework.web.servlet.view.tiles3 Support classes for the integration of Tiles 3 (the standalone version of Tiles) as Spring web view technology.Uses of WebApplicationContext in org.springframework.test.web.servlet
Methods in org.springframework.test.web.servlet with parameters of type WebApplicationContext Modifier and Type Method Description protected MockMvcMockMvcBuilderSupport. createMockMvc(Filter[] filters, MockServletConfig servletConfig, WebApplicationContext webAppContext, RequestBuilder defaultRequestBuilder, List<ResultMatcher> globalResultMatchers, List<ResultHandler> globalResultHandlers, List<DispatcherServletCustomizer> dispatcherServletCustomizers)Uses of WebApplicationContext in org.springframework.test.web.servlet.htmlunit
Methods in org.springframework.test.web.servlet.htmlunit with parameters of type WebApplicationContext Modifier and Type Method Description static MockMvcWebClientBuilderMockMvcWebClientBuilder. webAppContextSetup(WebApplicationContext context)Create a newMockMvcWebClientBuilderbased on the suppliedWebApplicationContext.static MockMvcWebClientBuilderMockMvcWebClientBuilder. webAppContextSetup(WebApplicationContext context, MockMvcConfigurer configurer)Create a newMockMvcWebClientBuilderbased on the suppliedWebApplicationContextandMockMvcConfigurer.Constructors in org.springframework.test.web.servlet.htmlunit with parameters of type WebApplicationContext Constructor Description MockMvcWebClientBuilder(WebApplicationContext context)MockMvcWebClientBuilder(WebApplicationContext context, MockMvcConfigurer configurer)MockMvcWebConnectionBuilderSupport(WebApplicationContext context)Create a new instance using the suppliedWebApplicationContext.MockMvcWebConnectionBuilderSupport(WebApplicationContext context, MockMvcConfigurer configurer)Create a new instance using the suppliedWebApplicationContextandMockMvcConfigurer.Uses of WebApplicationContext in org.springframework.test.web.servlet.htmlunit.webdriver
Methods in org.springframework.test.web.servlet.htmlunit.webdriver with parameters of type WebApplicationContext Modifier and Type Method Description static MockMvcHtmlUnitDriverBuilderMockMvcHtmlUnitDriverBuilder. webAppContextSetup(WebApplicationContext context)Create a newMockMvcHtmlUnitDriverBuilderbased on the suppliedWebApplicationContext.static MockMvcHtmlUnitDriverBuilderMockMvcHtmlUnitDriverBuilder. webAppContextSetup(WebApplicationContext context, MockMvcConfigurer configurer)Create a newMockMvcHtmlUnitDriverBuilderbased on the suppliedWebApplicationContextandMockMvcConfigurer.Constructors in org.springframework.test.web.servlet.htmlunit.webdriver with parameters of type WebApplicationContext Constructor Description MockMvcHtmlUnitDriverBuilder(WebApplicationContext context)MockMvcHtmlUnitDriverBuilder(WebApplicationContext context, MockMvcConfigurer configurer)Uses of WebApplicationContext in org.springframework.test.web.servlet.setup
Methods in org.springframework.test.web.servlet.setup that return WebApplicationContext Modifier and Type Method Description protected abstract WebApplicationContextAbstractMockMvcBuilder. initWebAppContext()A method to obtain theWebApplicationContextto be passed to theDispatcherServlet.protected WebApplicationContextDefaultMockMvcBuilder. initWebAppContext()protected WebApplicationContextStandaloneMockMvcBuilder. initWebAppContext()Methods in org.springframework.test.web.servlet.setup with parameters of type WebApplicationContext Modifier and Type Method Description default RequestPostProcessorMockMvcConfigurer. beforeMockMvcCreated(ConfigurableMockMvcBuilder<?> builder, WebApplicationContext context)Invoked when the MockMvc instance is about to be created with the MockMvc builder and the Spring WebApplicationContext that will be passed to theDispatcherServlet.RequestPostProcessorMockMvcConfigurerAdapter. beforeMockMvcCreated(ConfigurableMockMvcBuilder<?> builder, WebApplicationContext cxt)RequestPostProcessorSharedHttpSessionConfigurer. beforeMockMvcCreated(ConfigurableMockMvcBuilder<?> builder, WebApplicationContext context)static DefaultMockMvcBuilderMockMvcBuilders. webAppContextSetup(WebApplicationContext context)Build aMockMvcinstance using the given, fully initialized (i.e., refreshed)WebApplicationContext.Constructors in org.springframework.test.web.servlet.setup with parameters of type WebApplicationContext Constructor Description DefaultMockMvcBuilder(WebApplicationContext webAppContext)Protected constructor.Uses of WebApplicationContext in org.springframework.web.bind.support
Methods in org.springframework.web.bind.support that return WebApplicationContext Modifier and Type Method Description protected WebApplicationContextSpringWebConstraintValidatorFactory. getWebApplicationContext()Retrieve the SpringWebApplicationContextto use.Uses of WebApplicationContext in org.springframework.web.context
Subinterfaces of WebApplicationContext in org.springframework.web.context Modifier and Type Interface Description interfaceConfigurableWebApplicationContextInterface to be implemented by configurable web application contexts.Methods in org.springframework.web.context that return WebApplicationContext Modifier and Type Method Description protected abstract WebApplicationContextAbstractContextLoaderInitializer. createRootApplicationContext()Create the "root" application context to be provided to theContextLoaderListener.protected WebApplicationContextContextLoader. createWebApplicationContext(ServletContext sc)Instantiate the root WebApplicationContext for this loader, either the default context class or a custom context class if specified.static WebApplicationContextContextLoader. getCurrentWebApplicationContext()Obtain the Spring root web application context for the current thread (i.e.WebApplicationContextContextLoader. initWebApplicationContext(ServletContext servletContext)Initialize Spring's web application context for the given servlet context, using the application context provided at construction time, or creating a new one according to the "contextClass" and "contextConfigLocation" context-params.Constructors in org.springframework.web.context with parameters of type WebApplicationContext Constructor Description ContextLoader(WebApplicationContext context)Create a newContextLoaderwith the given application context.ContextLoaderListener(WebApplicationContext context)Create a newContextLoaderListenerwith the given application context.Uses of WebApplicationContext in org.springframework.web.context.support
Classes in org.springframework.web.context.support that implement WebApplicationContext Modifier and Type Class Description classAbstractRefreshableWebApplicationContextAbstractRefreshableApplicationContextsubclass which implements theConfigurableWebApplicationContextinterface for web environments.classAnnotationConfigWebApplicationContextWebApplicationContextimplementation which accepts component classes as input — in particular@Configuration-annotated classes, but also plain@Componentclasses and JSR-330 compliant classes usingjavax.injectannotations.classGenericWebApplicationContextSubclass ofGenericApplicationContext, suitable for web environments.classGroovyWebApplicationContextWebApplicationContextimplementation which takes its configuration from Groovy bean definition scripts and/or XML files, as understood by aGroovyBeanDefinitionReader.classStaticWebApplicationContextStaticWebApplicationContextimplementation for testing.classXmlWebApplicationContextWebApplicationContextimplementation which takes its configuration from XML documents, understood by anXmlBeanDefinitionReader.Methods in org.springframework.web.context.support that return WebApplicationContext Modifier and Type Method Description static WebApplicationContextWebApplicationContextUtils. findWebApplicationContext(ServletContext sc)Find a uniqueWebApplicationContextfor this web app: either the root web app context (preferred) or a uniqueWebApplicationContextamong the registeredServletContextattributes (typically coming from a singleDispatcherServletin the current web application).static WebApplicationContextWebApplicationContextUtils. getRequiredWebApplicationContext(ServletContext sc)Find the rootWebApplicationContextfor this web app, typically loaded viaContextLoaderListener.WebApplicationContextContextExposingHttpServletRequest. getWebApplicationContext()Return the WebApplicationContext that this request runs in.static WebApplicationContextWebApplicationContextUtils. getWebApplicationContext(ServletContext sc)Find the rootWebApplicationContextfor this web app, typically loaded viaContextLoaderListener.static WebApplicationContextWebApplicationContextUtils. getWebApplicationContext(ServletContext sc, String attrName)Find a customWebApplicationContextfor this web app.protected WebApplicationContextWebApplicationObjectSupport. getWebApplicationContext()Return the current application context as WebApplicationContext.Constructors in org.springframework.web.context.support with parameters of type WebApplicationContext Constructor Description ContextExposingHttpServletRequest(HttpServletRequest originalRequest, WebApplicationContext context)Create a new ContextExposingHttpServletRequest for the given request.ContextExposingHttpServletRequest(HttpServletRequest originalRequest, WebApplicationContext context, Set<String> exposedContextBeanNames)Create a new ContextExposingHttpServletRequest for the given request.Uses of WebApplicationContext in org.springframework.web.filter
Methods in org.springframework.web.filter that return WebApplicationContext Modifier and Type Method Description protected WebApplicationContextDelegatingFilterProxy. findWebApplicationContext()Return theWebApplicationContextpassed in at construction time, if available.Methods in org.springframework.web.filter with parameters of type WebApplicationContext Modifier and Type Method Description protected FilterDelegatingFilterProxy. initDelegate(WebApplicationContext wac)Initialize the Filter delegate, defined as bean the given Spring application context.Constructors in org.springframework.web.filter with parameters of type WebApplicationContext Constructor Description DelegatingFilterProxy(String targetBeanName, WebApplicationContext wac)Create a newDelegatingFilterProxythat will retrieve the named target bean from the given SpringWebApplicationContext.Uses of WebApplicationContext in org.springframework.web.jsf
Methods in org.springframework.web.jsf that return WebApplicationContext Modifier and Type Method Description static WebApplicationContextFacesContextUtils. getRequiredWebApplicationContext(FacesContext fc)Find the rootWebApplicationContextfor this web app, typically loaded viaContextLoaderListener.protected WebApplicationContextDelegatingNavigationHandlerProxy. getWebApplicationContext(FacesContext facesContext)Retrieve the web application context to delegate bean name resolution to.protected WebApplicationContextDelegatingPhaseListenerMulticaster. getWebApplicationContext(FacesContext facesContext)Retrieve the web application context to delegate bean name resolution to.static WebApplicationContextFacesContextUtils. getWebApplicationContext(FacesContext fc)Find the rootWebApplicationContextfor this web app, typically loaded viaContextLoaderListener.Uses of WebApplicationContext in org.springframework.web.jsf.el
Methods in org.springframework.web.jsf.el that return WebApplicationContext Modifier and Type Method Description protected WebApplicationContextSpringBeanFacesELResolver. getWebApplicationContext(ELContext elContext)Retrieve the web application context to delegate bean name resolution to.protected WebApplicationContextWebApplicationContextFacesELResolver. getWebApplicationContext(ELContext elContext)Retrieve theWebApplicationContextreference to expose.Uses of WebApplicationContext in org.springframework.web.servlet
Methods in org.springframework.web.servlet that return WebApplicationContext Modifier and Type Method Description protected WebApplicationContextFrameworkServlet. createWebApplicationContext(ApplicationContext parent)Instantiate the WebApplicationContext for this servlet, either a defaultXmlWebApplicationContextor acustom context class, if set.protected WebApplicationContextFrameworkServlet. createWebApplicationContext(WebApplicationContext parent)Instantiate the WebApplicationContext for this servlet, either a defaultXmlWebApplicationContextor acustom context class, if set.protected WebApplicationContextFrameworkServlet. findWebApplicationContext()WebApplicationContextFrameworkServlet. getWebApplicationContext()Return this servlet's WebApplicationContext.protected WebApplicationContextFrameworkServlet. initWebApplicationContext()Initialize and publish the WebApplicationContext for this servlet.Methods in org.springframework.web.servlet with parameters of type WebApplicationContext Modifier and Type Method Description protected WebApplicationContextFrameworkServlet. createWebApplicationContext(WebApplicationContext parent)Instantiate the WebApplicationContext for this servlet, either a defaultXmlWebApplicationContextor acustom context class, if set.Constructors in org.springframework.web.servlet with parameters of type WebApplicationContext Constructor Description DispatcherServlet(WebApplicationContext webApplicationContext)Create a newDispatcherServletwith the given web application context.FrameworkServlet(WebApplicationContext webApplicationContext)Create a newFrameworkServletwith the given web application context.Uses of WebApplicationContext in org.springframework.web.servlet.support
Methods in org.springframework.web.servlet.support that return WebApplicationContext Modifier and Type Method Description protected WebApplicationContextAbstractAnnotationConfigDispatcherServletInitializer. createRootApplicationContext()Create the "root" application context to be provided to theContextLoaderListener.protected WebApplicationContextAbstractAnnotationConfigDispatcherServletInitializer. createServletApplicationContext()Create a servlet application context to be provided to theDispatcherServlet.protected abstract WebApplicationContextAbstractDispatcherServletInitializer. createServletApplicationContext()Create a servlet application context to be provided to theDispatcherServlet.static WebApplicationContextRequestContextUtils. findWebApplicationContext(HttpServletRequest request)Look for the WebApplicationContext associated with the DispatcherServlet that has initiated request processing, and for the global context if none was found associated with the current request.static WebApplicationContextRequestContextUtils. findWebApplicationContext(HttpServletRequest request, ServletContext servletContext)Look for the WebApplicationContext associated with the DispatcherServlet that has initiated request processing, and for the global context if none was found associated with the current request.WebApplicationContextRequestContext. getWebApplicationContext()Return the current WebApplicationContext.Methods in org.springframework.web.servlet.support with parameters of type WebApplicationContext Modifier and Type Method Description protected FrameworkServletAbstractDispatcherServletInitializer. createDispatcherServlet(WebApplicationContext servletAppContext)Create aDispatcherServlet(or other kind ofFrameworkServlet-derived dispatcher) with the specifiedWebApplicationContext.Uses of WebApplicationContext in org.springframework.web.servlet.view.tiles3
Methods in org.springframework.web.servlet.view.tiles3 with parameters of type WebApplicationContext Modifier and Type Method Description protected abstract ViewPreparerAbstractSpringPreparerFactory. getPreparer(String name, WebApplicationContext context)Obtain a preparer instance for the given preparer name, based on the given Spring WebApplicationContext.protected ViewPreparerSimpleSpringPreparerFactory. getPreparer(String name, WebApplicationContext context)protected ViewPreparerSpringBeanPreparerFactory. getPreparer(String name, WebApplicationContext context)