|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.web.context.support.WebApplicationContextUtils
public abstract class WebApplicationContextUtils
Convenience methods for retrieving the root
WebApplicationContext
for a given
ServletContext
. This is e.g. useful for accessing a Spring
context from within custom web views or Struts actions.
Note that there are more convenient ways of accessing the root context for many web frameworks, either part of Spring or available as external library. This helper class is just the most generic way to access the root context.
ContextLoader
,
FrameworkServlet
,
DispatcherServlet
,
ActionSupport
,
DelegatingActionProxy
,
FacesContextUtils
,
DelegatingVariableResolver
Constructor Summary | |
---|---|
WebApplicationContextUtils()
|
Method Summary | |
---|---|
static WebApplicationContext |
getRequiredWebApplicationContext(ServletContext sc)
Find the root WebApplicationContext for this web application, which is typically loaded via ContextLoaderListener or
ContextLoaderServlet . |
static WebApplicationContext |
getWebApplicationContext(ServletContext sc)
Find the root WebApplicationContext for this web application, which is typically loaded via ContextLoaderListener or
ContextLoaderServlet . |
static WebApplicationContext |
getWebApplicationContext(ServletContext sc,
String attrName)
Find a custom WebApplicationContext for this web application. |
static void |
registerWebApplicationScopes(ConfigurableListableBeanFactory beanFactory)
Register web-specific scopes with the given BeanFactory, as used by the WebApplicationContext. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public WebApplicationContextUtils()
Method Detail |
---|
public static WebApplicationContext getRequiredWebApplicationContext(ServletContext sc) throws IllegalStateException
ContextLoaderListener
or
ContextLoaderServlet
.
Will rethrow an exception that happened on root context startup, to differentiate between a failed context startup and no context at all.
sc
- ServletContext to find the web application context for
IllegalStateException
- if the root WebApplicationContext could not be foundWebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE
public static WebApplicationContext getWebApplicationContext(ServletContext sc)
ContextLoaderListener
or
ContextLoaderServlet
.
Will rethrow an exception that happened on root context startup, to differentiate between a failed context startup and no context at all.
sc
- ServletContext to find the web application context for
null
if noneWebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE
public static WebApplicationContext getWebApplicationContext(ServletContext sc, String attrName)
sc
- ServletContext to find the web application context forattrName
- the name of the ServletContext attribute to look for
null
if nonepublic static void registerWebApplicationScopes(ConfigurableListableBeanFactory beanFactory)
beanFactory
- the BeanFactory to configure
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |