public class SpringServlet extends ServletContainer
This class extends ServletContainer and initiates the
WebApplication with a Spring-based IoCComponentProviderFactory,
SpringComponentProviderFactory, such that instances of resource and
provider classes declared and managed by Spring can be obtained.
Classes of Spring beans declared using XML-based configuration or auto-wire-based confguration will be automatically registered if such classes are root resource classes or provider classes. It is not necessary to provide initialization parameters for declaring classes in the web.xml unless a mixture of Spring-managed and Jersey-managed classes is required.
The servlet supports configuration of child applicationContexts,
see CONTEXT_CONFIG_LOCATION.
ServletContainer.ContextInjectableProvider<T>| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
CONTEXT_CONFIG_LOCATION
The context configuration location initialization parameter for declaring
that a child context should be used for bean definitions.
|
APPLICATION_CONFIG_CLASS, FEATURE_ALLOW_RAW_MANAGED_BEANS, FEATURE_FILTER_FORWARD_ON_404, GLASSFISH_DEFAULT_ERROR_PAGE_RESPONSE, JSP_TEMPLATES_BASE_PATH, PROPERTY_FILTER_CONTEXT_PATH, PROPERTY_WEB_PAGE_CONTENT_REGEX, RESOURCE_CONFIG_CLASS| Constructor and Description |
|---|
SpringServlet() |
| Modifier and Type | Method and Description |
|---|---|
protected org.springframework.context.ConfigurableApplicationContext |
getChildContext(java.lang.String contextConfigLocation)
Get the child application context.
|
protected org.springframework.context.ConfigurableApplicationContext |
getContext()
Get the application context.
|
protected org.springframework.context.ConfigurableApplicationContext |
getDefaultContext()
Get the default application context.
|
protected ResourceConfig |
getDefaultResourceConfig(java.util.Map<java.lang.String,java.lang.Object> props,
WebConfig webConfig) |
protected void |
initiate(ResourceConfig rc,
WebApplication wa) |
configure, configure, configure, create, destroy, doFilter, doFilter, getDefaultResourceConfig, getServletContext, getStaticContentPattern, getWebConfig, init, init, init, load, reload, service, servicedoDelete, doGet, doHead, doOptions, doPost, doPut, doTrace, getLastModified, servicepublic static final java.lang.String CONTEXT_CONFIG_LOCATION
The parameter name is the String "contextConfigLocation".
A parameter value is a reference to one more spring configuration files separated by commas, semicolons or whitespace. distinct locations separated by commas, semicolons or whitespace
If this parameter is absent then the default application context configuration is utilized.
protected ResourceConfig getDefaultResourceConfig(java.util.Map<java.lang.String,java.lang.Object> props, WebConfig webConfig) throws javax.servlet.ServletException
getDefaultResourceConfig in class ServletContainerjavax.servlet.ServletExceptionprotected void initiate(ResourceConfig rc, WebApplication wa)
initiate in class ServletContainerprotected org.springframework.context.ConfigurableApplicationContext getContext()
If the initialization parameter CONTEXT_CONFIG_LOCATION
is present then this method will invoke getChildContext(java.lang.String)
otherwise this method will invoke getDefaultContext().
protected org.springframework.context.ConfigurableApplicationContext getDefaultContext()
The default application context will be looked up from the servlet
context using WebApplicationContextUtils.getRequiredWebApplicationContext(javax.servlet.ServletContext).
protected org.springframework.context.ConfigurableApplicationContext getChildContext(java.lang.String contextConfigLocation)
The child application context is created as a child of the default
application context obtained from getDefaultContext().
contextConfigLocation - the location of the child application
context.Copyright © 2016 Oracle Corporation. All Rights Reserved.