Uses of Interface
org.springframework.web.context.request.WebRequest
Packages that use WebRequest
Package
Description
Support classes for web data binding.
Support for generic request context holding, in particular for
scoping of application objects per HTTP request or HTTP session.
Support for asynchronous request processing.
Support classes for annotation-based handler method processing.
-
Uses of WebRequest in org.springframework.web.bind.support
Methods in org.springframework.web.bind.support with parameters of type WebRequestModifier and TypeMethodDescriptionvoidWebRequestDataBinder.bind(WebRequest request) Bind the parameters of the given request to this binder's target, also binding multipart files in case of a multipart request.voidDefaultSessionAttributeStore.cleanupAttribute(WebRequest request, String attributeName) voidSessionAttributeStore.cleanupAttribute(WebRequest request, String attributeName) Clean up the specified attribute in the backend session.voidWebRequestDataBinder.construct(WebRequest request) Use a default or single data constructor to create the target by binding request parameters, multipart files, or parts to constructor args.protected StringDefaultSessionAttributeStore.getAttributeNameInSession(WebRequest request, String attributeName) Calculate the attribute name in the backend session.DefaultSessionAttributeStore.retrieveAttribute(WebRequest request, String attributeName) SessionAttributeStore.retrieveAttribute(WebRequest request, String attributeName) Retrieve the specified attribute from the backend session.voidDefaultSessionAttributeStore.storeAttribute(WebRequest request, String attributeName, Object attributeValue) voidSessionAttributeStore.storeAttribute(WebRequest request, String attributeName, Object attributeValue) Store the supplied attribute in the backend session. -
Uses of WebRequest in org.springframework.web.context.request
Subinterfaces of WebRequest in org.springframework.web.context.requestModifier and TypeInterfaceDescriptioninterfaceExtension of theWebRequestinterface, exposing the native request and response objects in a generic fashion.Classes in org.springframework.web.context.request that implement WebRequestModifier and TypeClassDescriptionclassWebRequestadapter for a JSFFacesContext.classWebRequestadapter for anHttpServletRequest.Methods in org.springframework.web.context.request with parameters of type WebRequestModifier and TypeMethodDescriptionvoidWebRequestInterceptor.afterCompletion(WebRequest request, Exception ex) Callback after completion of request processing, that is, after rendering the view.voidAsyncWebRequestInterceptor.afterConcurrentHandlingStarted(WebRequest request) Called instead ofpostHandleandafterCompletion, when the handler started handling the request concurrently.voidWebRequestInterceptor.postHandle(WebRequest request, org.springframework.ui.ModelMap model) Intercept the execution of a request handler after its successful invocation, right before view rendering (if any).voidWebRequestInterceptor.preHandle(WebRequest request) Intercept the execution of a request handler before its invocation. -
Uses of WebRequest in org.springframework.web.context.request.async
Subinterfaces of WebRequest in org.springframework.web.context.request.asyncModifier and TypeInterfaceDescriptioninterfaceExtendsNativeWebRequestwith methods for asynchronous request processing.Classes in org.springframework.web.context.request.async that implement WebRequestMethods in org.springframework.web.context.request.async with parameters of type WebRequestModifier and TypeMethodDescriptionstatic WebAsyncManagerWebAsyncUtils.getAsyncManager(WebRequest webRequest) Obtain theWebAsyncManagerfor the current request, or if not found, create and associate it with the request. -
Uses of WebRequest in org.springframework.web.method.annotation
Methods in org.springframework.web.method.annotation with parameters of type WebRequestModifier and TypeMethodDescriptionvoidSessionAttributesHandler.cleanupAttributes(WebRequest request) Remove "known" attributes from the session, i.e.SessionAttributesHandler.retrieveAttributes(WebRequest request) Retrieve "known" attributes from the session, i.e.voidSessionAttributesHandler.storeAttributes(WebRequest request, Map<String, ?> attributes) Store a subset of the given attributes in the session.