Uses of Interface
org.springframework.web.context.WebApplicationContext

Packages that use WebApplicationContext
org.springframework.remoting.jaxrpc Remoting classes for Web Services via JAX-RPC. 
org.springframework.web.context Contains the application context subinterface for web applications, and the ContextLoaderListener that bootstraps the root web application context. 
org.springframework.web.context.support Classes supporting the org.springframework.web.context package, such as WebApplicationContext implementations, and a utility class for retrieval of the root application context etc. 
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. 
 

Uses of WebApplicationContext in org.springframework.remoting.jaxrpc
 

Methods in org.springframework.remoting.jaxrpc that return WebApplicationContext
protected  WebApplicationContext ServletEndpointSupport.getWebApplicationContext()
          Return the current Spring WebApplicationContext.
 

Uses of WebApplicationContext in org.springframework.web.context
 

Subinterfaces of WebApplicationContext in org.springframework.web.context
 interface ConfigurableWebApplicationContext
          Interface to be implemented by configurable web application contexts.
 

Methods in org.springframework.web.context that return WebApplicationContext
 WebApplicationContext ContextLoader.initWebApplicationContext(javax.servlet.ServletContext servletContext)
          Initialize Spring's web application context for the given servlet context, regarding the "contextClass" and "contextConfigLocation" context-params.
protected  WebApplicationContext ContextLoader.createWebApplicationContext(javax.servlet.ServletContext servletContext, ApplicationContext parent)
          Instantiate the root WebApplicationContext for this loader, either a default XmlWebApplicationContext or a custom context class if specified.
 

Uses of WebApplicationContext in org.springframework.web.context.support
 

Classes in org.springframework.web.context.support that implement WebApplicationContext
 class StaticWebApplicationContext
          Static WebApplicationContext implementation for testing.
 class XmlWebApplicationContext
          WebApplicationContext implementation that takes configuration from an XML document.
 

Methods in org.springframework.web.context.support that return WebApplicationContext
protected  WebApplicationContext WebApplicationObjectSupport.getWebApplicationContext()
          Return the current application context as WebApplicationContext.
static WebApplicationContext WebApplicationContextUtils.getWebApplicationContext(javax.servlet.ServletContext sc)
          Find the root WebApplicationContext for this web app, which is typically loaded via ContextLoaderListener or ContextLoaderServlet.
static WebApplicationContext WebApplicationContextUtils.getRequiredWebApplicationContext(javax.servlet.ServletContext sc)
          Find the root WebApplicationContext for this web app, which is typically loaded via ContextLoaderListener or ContextLoaderServlet.
 

Uses of WebApplicationContext in org.springframework.web.servlet
 

Methods in org.springframework.web.servlet that return WebApplicationContext
 WebApplicationContext FrameworkServlet.getWebApplicationContext()
          Return this servlet's WebApplicationContext.
protected  WebApplicationContext FrameworkServlet.initWebApplicationContext()
          Initialize and publish the WebApplicationContext for this servlet.
protected  WebApplicationContext FrameworkServlet.createWebApplicationContext(WebApplicationContext parent)
          Instantiate the WebApplicationContext for this servlet, either a default XmlWebApplicationContext or a custom context class if set.
 

Methods in org.springframework.web.servlet with parameters of type WebApplicationContext
protected  WebApplicationContext FrameworkServlet.createWebApplicationContext(WebApplicationContext parent)
          Instantiate the WebApplicationContext for this servlet, either a default XmlWebApplicationContext or a custom context class if set.
 

Uses of WebApplicationContext in org.springframework.web.servlet.support
 

Methods in org.springframework.web.servlet.support that return WebApplicationContext
static WebApplicationContext RequestContextUtils.getWebApplicationContext(javax.servlet.ServletRequest request)
          Look for the WebApplicationContext associated with the controller servlet that has initiated request processing.
static WebApplicationContext RequestContextUtils.getWebApplicationContext(javax.servlet.ServletRequest request, javax.servlet.ServletContext servletContext)
          Look for the WebApplicationContext associated with the controller servlet that has initiated request processing, and for the global context if none was found associated with the current request.
 WebApplicationContext RequestContext.getWebApplicationContext()
          Return the current WebApplicationContext.
 



Copyright (C) 2003-2004 The Spring Framework Project.