|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.springframework.web.context.request.AbstractRequestAttributes
org.springframework.web.context.request.ServletRequestAttributes
org.springframework.web.context.request.ServletWebRequest
public class ServletWebRequest
WebRequest adapter for an HttpServletRequest.
| Field Summary | |
|---|---|
private static java.lang.String |
HEADER_ETAG
|
private static java.lang.String |
HEADER_IF_MODIFIED_SINCE
|
private static java.lang.String |
HEADER_IF_NONE_MATCH
|
private static java.lang.String |
HEADER_LAST_MODIFIED
|
private static java.lang.String |
METHOD_GET
|
private boolean |
notModified
|
private javax.servlet.http.HttpServletResponse |
response
|
| Fields inherited from class org.springframework.web.context.request.ServletRequestAttributes |
|---|
DESTRUCTION_CALLBACK_NAME_PREFIX |
| Fields inherited from class org.springframework.web.context.request.AbstractRequestAttributes |
|---|
requestDestructionCallbacks |
| Fields inherited from interface org.springframework.web.context.request.RequestAttributes |
|---|
REFERENCE_REQUEST, REFERENCE_SESSION, SCOPE_GLOBAL_SESSION, SCOPE_REQUEST, SCOPE_SESSION |
| Constructor Summary | |
|---|---|
ServletWebRequest(javax.servlet.http.HttpServletRequest request)
Create a new ServletWebRequest instance for the given request. |
|
ServletWebRequest(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Create a new ServletWebRequest instance for the given request/response pair. |
|
| Method Summary | ||
|---|---|---|
boolean |
checkNotModified(long lastModifiedTimestamp)
Check whether the request qualifies as not modified given the supplied last-modified timestamp (as determined by the application). |
|
java.lang.String |
getContextPath()
Return the context path for this request (usually the base path that the current web application is mapped to). |
|
java.lang.String |
getDescription(boolean includeClientInfo)
Get a short description of this request, typically containing request URI and session id. |
|
java.lang.String |
getHeader(java.lang.String headerName)
Return the request header of the given name, or null if none. |
|
java.util.Iterator<java.lang.String> |
getHeaderNames()
Return a Iterator over request header names. |
|
java.lang.String[] |
getHeaderValues(java.lang.String headerName)
Return the request header values for the given header name, or null if none. |
|
java.util.Locale |
getLocale()
Return the primary Locale for this request. |
|
java.lang.Object |
getNativeRequest()
Return the underlying native request object, if available. |
|
|
getNativeRequest(java.lang.Class<T> requiredType)
Return the underlying native request object, if available. |
|
java.lang.Object |
getNativeResponse()
Return the underlying native response object, if available. |
|
|
getNativeResponse(java.lang.Class<T> requiredType)
Return the underlying native request object, if available. |
|
java.lang.String |
getParameter(java.lang.String paramName)
Return the request parameter of the given name, or null if none. |
|
java.util.Map<java.lang.String,java.lang.String[]> |
getParameterMap()
Return a immutable Map of the request parameters, with parameter names as map keys and parameter values as map values. |
|
java.util.Iterator<java.lang.String> |
getParameterNames()
Return a Iterator over request parameter names. |
|
java.lang.String[] |
getParameterValues(java.lang.String paramName)
Return the request parameter values for the given parameter name, or null if none. |
|
java.lang.String |
getRemoteUser()
Return the remote user for this request, if any. |
|
javax.servlet.http.HttpServletResponse |
getResponse()
Exposes the native HttpServletRequest that we're wrapping (if any). |
|
java.security.Principal |
getUserPrincipal()
Return the user principal for this request, if any. |
|
boolean |
isNotModified()
|
|
boolean |
isSecure()
Return whether this request has been sent over a secure transport mechanism (such as SSL). |
|
boolean |
isUserInRole(java.lang.String role)
Determine whether the user is in the given role for this request. |
|
java.lang.String |
toString()
|
|
| Methods inherited from class org.springframework.web.context.request.ServletRequestAttributes |
|---|
getAttribute, getAttributeNames, getRequest, getSession, getSessionId, getSessionMutex, registerDestructionCallback, registerSessionDestructionCallback, removeAttribute, resolveReference, setAttribute, updateAccessedSessionAttributes |
| Methods inherited from class org.springframework.web.context.request.AbstractRequestAttributes |
|---|
isRequestActive, registerRequestDestructionCallback, removeRequestDestructionCallback, requestCompleted |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface org.springframework.web.context.request.RequestAttributes |
|---|
getAttribute, getAttributeNames, getSessionId, getSessionMutex, registerDestructionCallback, removeAttribute, resolveReference, setAttribute |
| Field Detail |
|---|
private static final java.lang.String HEADER_ETAG
private static final java.lang.String HEADER_IF_MODIFIED_SINCE
private static final java.lang.String HEADER_IF_NONE_MATCH
private static final java.lang.String HEADER_LAST_MODIFIED
private static final java.lang.String METHOD_GET
private javax.servlet.http.HttpServletResponse response
private boolean notModified
| Constructor Detail |
|---|
public ServletWebRequest(javax.servlet.http.HttpServletRequest request)
request - current HTTP request
public ServletWebRequest(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
request - current HTTP requestresponse - current HTTP response (for automatic last-modified handling)| Method Detail |
|---|
public final javax.servlet.http.HttpServletResponse getResponse()
HttpServletRequest that we're wrapping (if any).
public java.lang.Object getNativeRequest()
NativeWebRequest
getNativeRequest in interface NativeWebRequestHttpServletRequest,
ActionRequest,
RenderRequestpublic java.lang.Object getNativeResponse()
NativeWebRequest
getNativeResponse in interface NativeWebRequestHttpServletResponse,
ActionResponse,
RenderResponsepublic <T> T getNativeRequest(java.lang.Class<T> requiredType)
NativeWebRequest
getNativeRequest in interface NativeWebRequestrequiredType - the desired type of request object
null if none
of that type is availableHttpServletRequest,
ActionRequest,
RenderRequestpublic <T> T getNativeResponse(java.lang.Class<T> requiredType)
NativeWebRequest
getNativeResponse in interface NativeWebRequestrequiredType - the desired type of response object
null if none
of that type is availableHttpServletRequest,
ActionRequest,
RenderRequestpublic java.lang.String getHeader(java.lang.String headerName)
WebRequestnull if none.
Retrieves the first header value in case of a multi-value header.
getHeader in interface WebRequestHttpServletRequest.getHeader(String)public java.lang.String[] getHeaderValues(java.lang.String headerName)
WebRequestnull if none.
A single-value header will be exposed as an array with a single element.
getHeaderValues in interface WebRequestHttpServletRequest.getHeaders(String)public java.util.Iterator<java.lang.String> getHeaderNames()
WebRequest
getHeaderNames in interface WebRequestHttpServletRequest.getHeaderNames()public java.lang.String getParameter(java.lang.String paramName)
WebRequestnull if none.
Retrieves the first parameter value in case of a multi-value parameter.
getParameter in interface WebRequestServletRequest.getParameter(String)public java.lang.String[] getParameterValues(java.lang.String paramName)
WebRequestnull if none.
A single-value parameter will be exposed as an array with a single element.
getParameterValues in interface WebRequestServletRequest.getParameterValues(String)public java.util.Iterator<java.lang.String> getParameterNames()
WebRequest
getParameterNames in interface WebRequestServletRequest.getParameterNames()public java.util.Map<java.lang.String,java.lang.String[]> getParameterMap()
WebRequestA single-value parameter will be exposed as an array with a single element.
getParameterMap in interface WebRequestServletRequest.getParameterMap()public java.util.Locale getLocale()
WebRequest
getLocale in interface WebRequestServletRequest.getLocale()public java.lang.String getContextPath()
WebRequest
getContextPath in interface WebRequestHttpServletRequest.getContextPath()public java.lang.String getRemoteUser()
WebRequest
getRemoteUser in interface WebRequestHttpServletRequest.getRemoteUser()public java.security.Principal getUserPrincipal()
WebRequest
getUserPrincipal in interface WebRequestHttpServletRequest.getUserPrincipal()public boolean isUserInRole(java.lang.String role)
WebRequest
isUserInRole in interface WebRequestHttpServletRequest.isUserInRole(String)public boolean isSecure()
WebRequest
isSecure in interface WebRequestServletRequest.isSecure()public boolean checkNotModified(long lastModifiedTimestamp)
WebRequestThis will also transparently set the appropriate response headers, for both the modified case and the not-modified case.
Typical usage:
public String myHandleMethod(WebRequest webRequest, Model model) {
long lastModified = // application-specific calculation
if (request.checkNotModified(lastModified)) {
// shortcut exit - no further processing necessary
return null;
}
// further request processing, actually building content
model.addAttribute(...);
return "myViewName";
}
checkNotModified in interface WebRequestlastModifiedTimestamp - the last-modified timestamp that
the application determined for the underlying resource
public boolean isNotModified()
public java.lang.String getDescription(boolean includeClientInfo)
WebRequest
getDescription in interface WebRequestincludeClientInfo - whether to include client-specific
information such as session id and user name
public java.lang.String toString()
toString in class ServletRequestAttributes
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||