| org.springframework.web.context.ConfigurableWebApplicationContext
Field Summary | |
String | CONFIG_LOCATION_DELIMITERS Any number of these characters are considered delimiters between
multiple context config paths in a single String value. |
CONFIG_LOCATION_DELIMITERS | String CONFIG_LOCATION_DELIMITERS(Code) | | Any number of these characters are considered delimiters between
multiple context config paths in a single String value.
See Also: ContextLoader.CONFIG_LOCATION_PARAM See Also: org.springframework.web.servlet.FrameworkServlet.setContextConfigLocation |
getConfigLocations | String[] getConfigLocations()(Code) | | Return the config locations for this web application context,
or null if none specified.
|
getNamespace | String getNamespace()(Code) | | Return the namespace for this web application context, if any.
|
getServletConfig | ServletConfig getServletConfig()(Code) | | Return the ServletConfig for this web application context, if any.
|
setConfigLocations | void setConfigLocations(String[] configLocations)(Code) | | Set the config locations for this web application context.
If not set, the implementation is supposed to use a default for the
given namespace or the root web application context, as appropriate.
|
setNamespace | void setNamespace(String namespace)(Code) | | Set the namespace for this web application context,
to be used for building a default context config location.
The root web application context does not have a namespace.
|
setServletContext | void setServletContext(ServletContext servletContext)(Code) | | Set the ServletContext for this web application context.
Does not cause an initialization of the context: refresh needs to be
called after the setting of all configuration properties.
See Also: ConfigurableWebApplicationContext.refresh() |
|
|