类 FrameworkServlet
- java.lang.Object
- javax.servlet.GenericServlet
- javax.servlet.http.HttpServlet
- org.springframework.web.servlet.HttpServletBean
- org.springframework.web.servlet.FrameworkServlet
- 所有已实现的接口:
Serializable,Servlet,ServletConfig,Aware,ApplicationContextAware,EnvironmentAware,EnvironmentCapable
- 直接已知子类:
DispatcherServlet
public abstract class FrameworkServlet extends HttpServletBean implements ApplicationContextAware
Base servlet for Spring's web framework. Provides integration with a Spring application context, in a JavaBean-based overall solution.This class offers the following functionality:
- Manages a
WebApplicationContextinstance per servlet. The servlet's configuration is determined by beans in the servlet's namespace. - Publishes events on request processing, whether or not a request is successfully handled.
Subclasses must implement
doService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)to handle requests. Because this extendsHttpServletBeanrather than HttpServlet directly, bean properties are automatically mapped onto it. Subclasses can overrideinitFrameworkServlet()for custom initialization.Detects a "contextClass" parameter at the servlet init-param level, falling back to the default context class,
XmlWebApplicationContext, if not found. Note that, with the defaultFrameworkServlet, a custom context class needs to implement theConfigurableWebApplicationContextSPI.Accepts an optional "contextInitializerClasses" servlet init-param that specifies one or more
ApplicationContextInitializerclasses. The managed web application context will be delegated to these initializers, allowing for additional programmatic configuration, e.g. adding property sources or activating profiles against the context's environment. See alsoContextLoaderwhich supports a "contextInitializerClasses" context-param with identical semantics for the "root" web application context.Passes a "contextConfigLocation" servlet init-param to the context instance, parsing it into potentially multiple file paths which can be separated by any number of commas and spaces, like "test-servlet.xml, myServlet.xml". If not explicitly specified, the context implementation is supposed to build a default location from the namespace of the servlet.
Note: In case of multiple config locations, later bean definitions will override ones defined in earlier loaded files, at least when using Spring's default ApplicationContext implementation. This can be leveraged to deliberately override certain bean definitions via an extra XML file.
The default namespace is "'servlet-name'-servlet", e.g. "test-servlet" for a servlet-name "test" (leading to a "/WEB-INF/test-servlet.xml" default location with XmlWebApplicationContext). The namespace can also be set explicitly via the "namespace" servlet init-param.
As of Spring 3.1,
FrameworkServletmay now be injected with a web application context, rather than creating its own internally. This is useful in Servlet 3.0+ environments, which support programmatic registration of servlet instances. SeeFrameworkServlet(WebApplicationContext)Javadoc for details.- 作者:
- Rod Johnson, Juergen Hoeller, Sam Brannen, Chris Beams, Rossen Stoyanchev, Phillip Webb
- 另请参阅:
doService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse),setContextClass(java.lang.Class<?>),setContextConfigLocation(java.lang.String),setContextInitializerClasses(java.lang.String),setNamespace(java.lang.String), 序列化表格
字段概要
字段 修饰符和类型 字段 说明 static Class<?>DEFAULT_CONTEXT_CLASSDefault context class for FrameworkServlet.static StringDEFAULT_NAMESPACE_SUFFIXSuffix for WebApplicationContext namespaces.static StringSERVLET_CONTEXT_PREFIXPrefix for the ServletContext attribute for the WebApplicationContext.从类继承的字段 org.springframework.web.servlet.HttpServletBean
logger
构造器概要
构造器 构造器 说明 FrameworkServlet()Create a newFrameworkServletthat will create its own internal web application context based on defaults and values provided through servlet init-params.FrameworkServlet(WebApplicationContext webApplicationContext)Create a newFrameworkServletwith the given web application context.
方法概要
所有方法 实例方法 抽象方法 具体方法 修饰符和类型 方法 说明 protected voidapplyInitializers(ConfigurableApplicationContext wac)Delegate the WebApplicationContext before it is refreshed to anyApplicationContextInitializerinstances specified by the "contextInitializerClasses" servlet init-param.protected LocaleContextbuildLocaleContext(HttpServletRequest request)Build a LocaleContext for the given request, exposing the request's primary locale as current locale.protected ServletRequestAttributesbuildRequestAttributes(HttpServletRequest request, HttpServletResponse response, RequestAttributes previousAttributes)Build ServletRequestAttributes for the given request (potentially also holding a reference to the response), taking pre-bound attributes (and their type) into consideration.protected voidconfigureAndRefreshWebApplicationContext(ConfigurableWebApplicationContext wac)protected WebApplicationContextcreateWebApplicationContext(ApplicationContext parent)Instantiate the WebApplicationContext for this servlet, either a defaultXmlWebApplicationContextor acustom context class, if set.protected WebApplicationContextcreateWebApplicationContext(WebApplicationContext parent)Instantiate the WebApplicationContext for this servlet, either a defaultXmlWebApplicationContextor acustom context class, if set.voiddestroy()Close the WebApplicationContext of this servlet.protected voiddoDelete(HttpServletRequest request, HttpServletResponse response)Delegate DELETE requests toprocessRequest(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse).protected voiddoGet(HttpServletRequest request, HttpServletResponse response)Delegate GET requests to processRequest/doService.protected voiddoOptions(HttpServletRequest request, HttpServletResponse response)Delegate OPTIONS requests toprocessRequest(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse), if desired.protected voiddoPost(HttpServletRequest request, HttpServletResponse response)Delegate POST requests toprocessRequest(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse).protected voiddoPut(HttpServletRequest request, HttpServletResponse response)Delegate PUT requests toprocessRequest(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse).protected abstract voiddoService(HttpServletRequest request, HttpServletResponse response)Subclasses must implement this method to do the work of request handling, receiving a centralized callback for GET, POST, PUT and DELETE.protected voiddoTrace(HttpServletRequest request, HttpServletResponse response)Delegate TRACE requests toprocessRequest(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse), if desired.protected WebApplicationContextfindWebApplicationContext()StringgetContextAttribute()Return the name of the ServletContext attribute which should be used to retrieve theWebApplicationContextthat this servlet is supposed to use.Class<?>getContextClass()Return the custom context class.StringgetContextConfigLocation()Return the explicit context config location, if any.StringgetContextId()Return the custom WebApplicationContext id, if any.StringgetNamespace()Return the namespace for this servlet, falling back to default scheme if no custom namespace was set: e.g.StringgetServletContextAttributeName()Return the ServletContext attribute name for this servlet's WebApplicationContext.protected StringgetUsernameForRequest(HttpServletRequest request)Determine the username for the given request.WebApplicationContextgetWebApplicationContext()Return this servlet's WebApplicationContext.protected voidinitFrameworkServlet()This method will be invoked after any bean properties have been set and the WebApplicationContext has been loaded.protected voidinitServletBean()Overridden method ofHttpServletBean, invoked after any bean properties have been set.protected WebApplicationContextinitWebApplicationContext()Initialize and publish the WebApplicationContext for this servlet.voidonApplicationEvent(ContextRefreshedEvent event)Callback that receives refresh events from this servlet's WebApplicationContext.protected voidonRefresh(ApplicationContext context)Template method which can be overridden to add servlet-specific refresh work.protected voidpostProcessWebApplicationContext(ConfigurableWebApplicationContext wac)Post-process the given WebApplicationContext before it is refreshed and activated as context for this servlet.protected voidprocessRequest(HttpServletRequest request, HttpServletResponse response)Process this request, publishing an event regardless of the outcome.voidrefresh()Refresh this servlet's application context, as well as the dependent state of the servlet.protected voidservice(HttpServletRequest request, HttpServletResponse response)Override the parent class implementation in order to intercept PATCH requests.voidsetApplicationContext(ApplicationContext applicationContext)Called by Spring viaApplicationContextAwareto inject the current application context.voidsetContextAttribute(String contextAttribute)Set the name of the ServletContext attribute which should be used to retrieve theWebApplicationContextthat this servlet is supposed to use.voidsetContextClass(Class<?> contextClass)Set a custom context class.voidsetContextConfigLocation(String contextConfigLocation)Set the context config location explicitly, instead of relying on the default location built from the namespace.voidsetContextId(String contextId)Specify a custom WebApplicationContext id, to be used as serialization id for the underlying BeanFactory.voidsetContextInitializerClasses(String contextInitializerClasses)Specify the set of fully-qualifiedApplicationContextInitializerclass names, per the optional "contextInitializerClasses" servlet init-param.voidsetContextInitializers(ApplicationContextInitializer<?>... initializers)Specify whichApplicationContextInitializerinstances should be used to initialize the application context used by thisFrameworkServlet.voidsetDispatchOptionsRequest(boolean dispatchOptionsRequest)Set whether this servlet should dispatch an HTTP OPTIONS request to thedoService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)method.voidsetDispatchTraceRequest(boolean dispatchTraceRequest)Set whether this servlet should dispatch an HTTP TRACE request to thedoService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)method.voidsetNamespace(String namespace)Set a custom namespace for this servlet, to be used for building a default context config location.voidsetPublishContext(boolean publishContext)Set whether to publish this servlet's context as a ServletContext attribute, available to all objects in the web container.voidsetPublishEvents(boolean publishEvents)Set whether this servlet should publish a ServletRequestHandledEvent at the end of each request.voidsetThreadContextInheritable(boolean threadContextInheritable)Set whether to expose the LocaleContext and RequestAttributes as inheritable for child threads (using anInheritableThreadLocal).从类继承的方法 org.springframework.web.servlet.HttpServletBean
addRequiredProperty, createEnvironment, getEnvironment, getServletContext, getServletName, init, initBeanWrapper, setEnvironment
从类继承的方法 javax.servlet.http.HttpServlet
doHead, getLastModified, service
从类继承的方法 javax.servlet.GenericServlet
getInitParameter, getInitParameterNames, getServletConfig, getServletInfo, init, log, log
字段详细资料
DEFAULT_NAMESPACE_SUFFIX
public static final String DEFAULT_NAMESPACE_SUFFIX
Suffix for WebApplicationContext namespaces. If a servlet of this class is given the name "test" in a context, the namespace used by the servlet will resolve to "test-servlet".- 另请参阅:
- 常量字段值
DEFAULT_CONTEXT_CLASS
public static final Class<?> DEFAULT_CONTEXT_CLASS
Default context class for FrameworkServlet.
SERVLET_CONTEXT_PREFIX
public static final String SERVLET_CONTEXT_PREFIX
Prefix for the ServletContext attribute for the WebApplicationContext. The completion is the servlet name.
构造器详细资料
FrameworkServlet
public FrameworkServlet()
Create a newFrameworkServletthat will create its own internal web application context based on defaults and values provided through servlet init-params. Typically used in Servlet 2.5 or earlier environments, where the only option for servlet registration is throughweb.xmlwhich requires the use of a no-arg constructor.Calling
setContextConfigLocation(java.lang.String)(init-param 'contextConfigLocation') will dictate which XML files will be loaded by the default XmlWebApplicationContextCalling
setContextClass(java.lang.Class<?>)(init-param 'contextClass') overrides the defaultXmlWebApplicationContextand allows for specifying an alternative class, such asAnnotationConfigWebApplicationContext.Calling
setContextInitializerClasses(java.lang.String)(init-param 'contextInitializerClasses') indicates whichApplicationContextInitializerclasses should be used to further configure the internal application context prior to refresh().
FrameworkServlet
public FrameworkServlet(WebApplicationContext webApplicationContext)
Create a newFrameworkServletwith the given web application context. This constructor is useful in Servlet 3.0+ environments where instance-based registration of servlets is possible through theServletContext.addServlet(java.lang.String, java.lang.String)API.Using this constructor indicates that the following properties / init-params will be ignored:
setContextClass(Class)/ 'contextClass'setContextConfigLocation(String)/ 'contextConfigLocation'setContextAttribute(String)/ 'contextAttribute'setNamespace(String)/ 'namespace'
The given web application context may or may not yet be refreshed. If it (a) is an implementation of
ConfigurableWebApplicationContextand (b) has not already been refreshed (the recommended approach), then the following will occur:- If the given context does not already have a parent, the root application context will be set as the parent.
- If the given context has not already been assigned an id, one will be assigned to it
ServletContextandServletConfigobjects will be delegated to the application contextpostProcessWebApplicationContext(org.springframework.web.context.ConfigurableWebApplicationContext)will be called- Any
ApplicationContextInitializers specified through the "contextInitializerClasses" init-param or through thesetContextInitializers(org.springframework.context.ApplicationContextInitializer<?>...)property will be applied. refresh()will be called
ConfigurableWebApplicationContext, none of the above will occur under the assumption that the user has performed these actions (or not) per his or her specific needs.See
WebApplicationInitializerfor usage examples.- 参数:
webApplicationContext- the context to use- 另请参阅:
initWebApplicationContext(),configureAndRefreshWebApplicationContext(org.springframework.web.context.ConfigurableWebApplicationContext),WebApplicationInitializer
方法详细资料
setContextAttribute
public void setContextAttribute(String contextAttribute)
Set the name of the ServletContext attribute which should be used to retrieve theWebApplicationContextthat this servlet is supposed to use.
getContextAttribute
public String getContextAttribute()
Return the name of the ServletContext attribute which should be used to retrieve theWebApplicationContextthat this servlet is supposed to use.
setContextClass
public void setContextClass(Class<?> contextClass)
Set a custom context class. This class must be of typeWebApplicationContext.When using the default FrameworkServlet implementation, the context class must also implement the
ConfigurableWebApplicationContextinterface.
getContextClass
public Class<?> getContextClass()
Return the custom context class.
setContextId
public void setContextId(String contextId)
Specify a custom WebApplicationContext id, to be used as serialization id for the underlying BeanFactory.
getContextId
public String getContextId()
Return the custom WebApplicationContext id, if any.
setNamespace
public void setNamespace(String namespace)
Set a custom namespace for this servlet, to be used for building a default context config location.
getNamespace
public String getNamespace()
Return the namespace for this servlet, falling back to default scheme if no custom namespace was set: e.g. "test-servlet" for a servlet named "test".
setContextConfigLocation
public void setContextConfigLocation(String contextConfigLocation)
Set the context config location explicitly, instead of relying on the default location built from the namespace. This location string can consist of multiple locations separated by any number of commas and spaces.
getContextConfigLocation
public String getContextConfigLocation()
Return the explicit context config location, if any.
setContextInitializers
public void setContextInitializers(ApplicationContextInitializer<?>... initializers)
Specify whichApplicationContextInitializerinstances should be used to initialize the application context used by thisFrameworkServlet.
setContextInitializerClasses
public void setContextInitializerClasses(String contextInitializerClasses)
Specify the set of fully-qualifiedApplicationContextInitializerclass names, per the optional "contextInitializerClasses" servlet init-param.
setPublishContext
public void setPublishContext(boolean publishContext)
Set whether to publish this servlet's context as a ServletContext attribute, available to all objects in the web container. Default is "true".This is especially handy during testing, although it is debatable whether it's good practice to let other application objects access the context this way.
setPublishEvents
public void setPublishEvents(boolean publishEvents)
Set whether this servlet should publish a ServletRequestHandledEvent at the end of each request. Default is "true"; can be turned off for a slight performance improvement, provided that no ApplicationListeners rely on such events.
setThreadContextInheritable
public void setThreadContextInheritable(boolean threadContextInheritable)
Set whether to expose the LocaleContext and RequestAttributes as inheritable for child threads (using anInheritableThreadLocal).Default is "false", to avoid side effects on spawned background threads. Switch this to "true" to enable inheritance for custom child threads which are spawned during request processing and only used for this request (that is, ending after their initial task, without reuse of the thread).
WARNING: Do not use inheritance for child threads if you are accessing a thread pool which is configured to potentially add new threads on demand (e.g. a JDK
ThreadPoolExecutor), since this will expose the inherited context to such a pooled thread.
setDispatchOptionsRequest
public void setDispatchOptionsRequest(boolean dispatchOptionsRequest)
Set whether this servlet should dispatch an HTTP OPTIONS request to thedoService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)method.Default in the
FrameworkServletis "false", applyingHttpServlet's default behavior (i.e.enumerating all standard HTTP request methods as a response to the OPTIONS request). Note however that as of 4.3 theDispatcherServletsets this property to "true" by default due to its built-in support for OPTIONS.Turn this flag on if you prefer OPTIONS requests to go through the regular dispatching chain, just like other HTTP requests. This usually means that your controllers will receive those requests; make sure that those endpoints are actually able to handle an OPTIONS request.
Note that HttpServlet's default OPTIONS processing will be applied in any case if your controllers happen to not set the 'Allow' header (as required for an OPTIONS response).
setDispatchTraceRequest
public void setDispatchTraceRequest(boolean dispatchTraceRequest)
Set whether this servlet should dispatch an HTTP TRACE request to thedoService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)method.Default is "false", applying
HttpServlet's default behavior (i.e. reflecting the message received back to the client).Turn this flag on if you prefer TRACE requests to go through the regular dispatching chain, just like other HTTP requests. This usually means that your controllers will receive those requests; make sure that those endpoints are actually able to handle a TRACE request.
Note that HttpServlet's default TRACE processing will be applied in any case if your controllers happen to not generate a response of content type 'message/http' (as required for a TRACE response).
setApplicationContext
public void setApplicationContext(ApplicationContext applicationContext)
Called by Spring viaApplicationContextAwareto inject the current application context. This method allows FrameworkServlets to be registered as Spring beans inside an existingWebApplicationContextrather thanfindingabootstrappedcontext.Primarily added to support use in embedded servlet containers.
- 指定者:
setApplicationContext在接口中ApplicationContextAware- 参数:
applicationContext- the ApplicationContext object to be used by this object- 从以下版本开始:
- 4.0
- 另请参阅:
BeanInitializationException
initServletBean
protected final void initServletBean() throws ServletException
Overridden method ofHttpServletBean, invoked after any bean properties have been set. Creates this servlet's WebApplicationContext.- 覆盖:
initServletBean在类中HttpServletBean- 抛出:
ServletException- if subclass initialization fails
initWebApplicationContext
protected WebApplicationContext initWebApplicationContext()
Initialize and publish the WebApplicationContext for this servlet.Delegates to
createWebApplicationContext(org.springframework.context.ApplicationContext)for actual creation of the context. Can be overridden in subclasses.- 返回:
- the WebApplicationContext instance
- 另请参阅:
FrameworkServlet(WebApplicationContext),setContextClass(java.lang.Class<?>),setContextConfigLocation(java.lang.String)
findWebApplicationContext
protected WebApplicationContext findWebApplicationContext()
Retrieve aWebApplicationContextfrom theServletContextattribute with theconfigured name. TheWebApplicationContextmust have already been loaded and stored in theServletContextbefore this servlet gets initialized (or invoked).Subclasses may override this method to provide a different
WebApplicationContextretrieval strategy.- 返回:
- the WebApplicationContext for this servlet, or
nullif not found - 另请参阅:
getContextAttribute()
createWebApplicationContext
protected WebApplicationContext createWebApplicationContext(ApplicationContext parent)
Instantiate the WebApplicationContext for this servlet, either a defaultXmlWebApplicationContextor acustom context class, if set.This implementation expects custom contexts to implement the
ConfigurableWebApplicationContextinterface. Can be overridden in subclasses.Do not forget to register this servlet instance as application listener on the created context (for triggering its
callback, and to callConfigurableApplicationContext.refresh()before returning the context instance.- 参数:
parent- the parent ApplicationContext to use, ornullif none- 返回:
- the WebApplicationContext for this servlet
- 另请参阅:
XmlWebApplicationContext
configureAndRefreshWebApplicationContext
protected void configureAndRefreshWebApplicationContext(ConfigurableWebApplicationContext wac)
createWebApplicationContext
protected WebApplicationContext createWebApplicationContext(WebApplicationContext parent)
Instantiate the WebApplicationContext for this servlet, either a defaultXmlWebApplicationContextor acustom context class, if set. Delegates to #createWebApplicationContext(ApplicationContext).- 参数:
parent- the parent WebApplicationContext to use, ornullif none- 返回:
- the WebApplicationContext for this servlet
- 另请参阅:
XmlWebApplicationContext,createWebApplicationContext(ApplicationContext)
postProcessWebApplicationContext
protected void postProcessWebApplicationContext(ConfigurableWebApplicationContext wac)
Post-process the given WebApplicationContext before it is refreshed and activated as context for this servlet.The default implementation is empty.
refresh()will be called automatically after this method returns.Note that this method is designed to allow subclasses to modify the application context, while
initWebApplicationContext()is designed to allow end-users to modify the context through the use ofApplicationContextInitializers.- 参数:
wac- the configured WebApplicationContext (not refreshed yet)- 另请参阅:
createWebApplicationContext(org.springframework.context.ApplicationContext),initWebApplicationContext(),ConfigurableApplicationContext.refresh()
applyInitializers
protected void applyInitializers(ConfigurableApplicationContext wac)
Delegate the WebApplicationContext before it is refreshed to anyApplicationContextInitializerinstances specified by the "contextInitializerClasses" servlet init-param.See also
postProcessWebApplicationContext(org.springframework.web.context.ConfigurableWebApplicationContext), which is designed to allow subclasses (as opposed to end-users) to modify the application context, and is called immediately before this method.- 参数:
wac- the configured WebApplicationContext (not refreshed yet)- 另请参阅:
createWebApplicationContext(org.springframework.context.ApplicationContext),postProcessWebApplicationContext(org.springframework.web.context.ConfigurableWebApplicationContext),ConfigurableApplicationContext.refresh()
getServletContextAttributeName
public String getServletContextAttributeName()
Return the ServletContext attribute name for this servlet's WebApplicationContext.The default implementation returns
SERVLET_CONTEXT_PREFIX + servlet name.
getWebApplicationContext
public final WebApplicationContext getWebApplicationContext()
Return this servlet's WebApplicationContext.
initFrameworkServlet
protected void initFrameworkServlet() throws ServletException
This method will be invoked after any bean properties have been set and the WebApplicationContext has been loaded. The default implementation is empty; subclasses may override this method to perform any initialization they require.- 抛出:
ServletException- in case of an initialization exception
refresh
public void refresh()
Refresh this servlet's application context, as well as the dependent state of the servlet.
onApplicationEvent
public void onApplicationEvent(ContextRefreshedEvent event)
Callback that receives refresh events from this servlet's WebApplicationContext.The default implementation calls
onRefresh(org.springframework.context.ApplicationContext), triggering a refresh of this servlet's context-dependent state.- 参数:
event- the incoming ApplicationContext event
onRefresh
protected void onRefresh(ApplicationContext context)
Template method which can be overridden to add servlet-specific refresh work. Called after successful context refresh.This implementation is empty.
- 参数:
context- the current WebApplicationContext- 另请参阅:
refresh()
destroy
public void destroy()
Close the WebApplicationContext of this servlet.- 指定者:
destroy在接口中Servlet- 覆盖:
destroy在类中GenericServlet- 另请参阅:
ConfigurableApplicationContext.close()
service
protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
Override the parent class implementation in order to intercept PATCH requests.
doGet
protected final void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
Delegate GET requests to processRequest/doService.Will also be invoked by HttpServlet's default implementation of
doHead, with aNoBodyResponsethat just captures the content length.
doPost
protected final void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
Delegate POST requests toprocessRequest(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse).
doPut
protected final void doPut(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
Delegate PUT requests toprocessRequest(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse).
doDelete
protected final void doDelete(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
Delegate DELETE requests toprocessRequest(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse).
doOptions
protected void doOptions(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
Delegate OPTIONS requests toprocessRequest(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse), if desired.Applies HttpServlet's standard OPTIONS processing otherwise, and also if there is still no 'Allow' header set after dispatching.
doTrace
protected void doTrace(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
Delegate TRACE requests toprocessRequest(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse), if desired.Applies HttpServlet's standard TRACE processing otherwise.
processRequest
protected final void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
Process this request, publishing an event regardless of the outcome.The actual event handling is performed by the abstract
doService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)template method.
buildLocaleContext
protected LocaleContext buildLocaleContext(HttpServletRequest request)
Build a LocaleContext for the given request, exposing the request's primary locale as current locale.- 参数:
request- current HTTP request- 返回:
- the corresponding LocaleContext, or
nullif none to bind - 另请参阅:
LocaleContextHolder.setLocaleContext(org.springframework.context.i18n.LocaleContext)
buildRequestAttributes
protected ServletRequestAttributes buildRequestAttributes(HttpServletRequest request, HttpServletResponse response, RequestAttributes previousAttributes)
Build ServletRequestAttributes for the given request (potentially also holding a reference to the response), taking pre-bound attributes (and their type) into consideration.- 参数:
request- current HTTP requestresponse- current HTTP responsepreviousAttributes- pre-bound RequestAttributes instance, if any- 返回:
- the ServletRequestAttributes to bind, or
nullto preserve the previously bound instance (or not binding any, if none bound before) - 另请参阅:
RequestContextHolder.setRequestAttributes(org.springframework.web.context.request.RequestAttributes)
getUsernameForRequest
protected String getUsernameForRequest(HttpServletRequest request)
Determine the username for the given request.The default implementation takes the name of the UserPrincipal, if any. Can be overridden in subclasses.
- 参数:
request- current HTTP request- 返回:
- the username, or
nullif none found - 另请参阅:
HttpServletRequest.getUserPrincipal()
doService
protected abstract void doService(HttpServletRequest request, HttpServletResponse response) throws Exception
Subclasses must implement this method to do the work of request handling, receiving a centralized callback for GET, POST, PUT and DELETE.The contract is essentially the same as that for the commonly overridden
doGetordoPostmethods of HttpServlet.This class intercepts calls to ensure that exception handling and event publication takes place.
- 参数:
request- current HTTP requestresponse- current HTTP response- 抛出:
Exception- in case of any kind of processing failure- 另请参阅:
HttpServlet.doGet(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse),HttpServlet.doPost(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)