Class RequestContextHolder
- java.lang.Object
- org.springframework.web.context.request.RequestContextHolder
public abstract class RequestContextHolder extends Object
Holder class to expose the web request in the form of a thread-boundRequestAttributesobject. The request will be inherited by any child threads spawned by the current thread if theinheritableflag is set totrue.Use
RequestContextListenerorRequestContextFilterto expose the current web request. Note thatDispatcherServletandDispatcherPortletalready expose the current request by default.- Since:
- 2.0
- Author:
- Juergen Hoeller, Rod Johnson
- See Also:
RequestContextListener,RequestContextFilter,DispatcherServlet,DispatcherPortlet
Constructor Summary
Constructors Constructor Description RequestContextHolder()
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RequestAttributescurrentRequestAttributes()Return the RequestAttributes currently bound to the thread.static RequestAttributesgetRequestAttributes()Return the RequestAttributes currently bound to the thread.static voidresetRequestAttributes()Reset the RequestAttributes for the current thread.static voidsetRequestAttributes(RequestAttributes attributes)Bind the given RequestAttributes to the current thread, not exposing it as inheritable for child threads.static voidsetRequestAttributes(RequestAttributes attributes, boolean inheritable)Bind the given RequestAttributes to the current thread.
Constructor Detail
RequestContextHolder
public RequestContextHolder()
Method Detail
resetRequestAttributes
public static void resetRequestAttributes()
Reset the RequestAttributes for the current thread.
setRequestAttributes
public static void setRequestAttributes(RequestAttributes attributes)
Bind the given RequestAttributes to the current thread, not exposing it as inheritable for child threads.- Parameters:
attributes- the RequestAttributes to expose- See Also:
setRequestAttributes(RequestAttributes, boolean)
setRequestAttributes
public static void setRequestAttributes(RequestAttributes attributes, boolean inheritable)
Bind the given RequestAttributes to the current thread.- Parameters:
attributes- the RequestAttributes to expose, ornullto reset the thread-bound contextinheritable- whether to expose the RequestAttributes as inheritable for child threads (using anInheritableThreadLocal)
getRequestAttributes
public static RequestAttributes getRequestAttributes()
Return the RequestAttributes currently bound to the thread.- Returns:
- the RequestAttributes currently bound to the thread, or
nullif none bound
currentRequestAttributes
public static RequestAttributes currentRequestAttributes() throws IllegalStateException
Return the RequestAttributes currently bound to the thread.Exposes the previously bound RequestAttributes instance, if any. Falls back to the current JSF FacesContext, if any.
- Returns:
- the RequestAttributes currently bound to the thread
- Throws:
IllegalStateException- if no RequestAttributes object is bound to the current thread- See Also:
setRequestAttributes(org.springframework.web.context.request.RequestAttributes),ServletRequestAttributes,FacesRequestAttributes,FacesContext.getCurrentInstance()