|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.web.util.WebUtils
public abstract class WebUtils
Miscellaneous utilities for web applications. Used by various framework classes.
Field Summary | |
---|---|
static java.lang.String |
CONTENT_TYPE_CHARSET_PREFIX
Prefix of the charset clause in a content type String: ";charset=" |
static java.lang.String |
DEFAULT_CHARACTER_ENCODING
Default character encoding to use when request.getCharacterEncoding
returns null , according to the Servlet spec. |
static java.lang.String |
DEFAULT_WEB_APP_ROOT_KEY
Default web app root key: "webapp.root" |
static java.lang.String |
ERROR_EXCEPTION_ATTRIBUTE
|
static java.lang.String |
ERROR_EXCEPTION_TYPE_ATTRIBUTE
|
static java.lang.String |
ERROR_MESSAGE_ATTRIBUTE
|
static java.lang.String |
ERROR_REQUEST_URI_ATTRIBUTE
|
static java.lang.String |
ERROR_SERVLET_NAME_ATTRIBUTE
|
static java.lang.String |
ERROR_STATUS_CODE_ATTRIBUTE
Standard Servlet 2.3+ spec request attributes for error pages. |
static java.lang.String |
FORWARD_CONTEXT_PATH_ATTRIBUTE
|
static java.lang.String |
FORWARD_PATH_INFO_ATTRIBUTE
|
static java.lang.String |
FORWARD_QUERY_STRING_ATTRIBUTE
|
static java.lang.String |
FORWARD_REQUEST_URI_ATTRIBUTE
Standard Servlet 2.4+ spec request attributes for forward URI and paths. |
static java.lang.String |
FORWARD_SERVLET_PATH_ATTRIBUTE
|
static java.lang.String |
HTML_ESCAPE_CONTEXT_PARAM
HTML escape parameter at the servlet context level (i.e. |
static java.lang.String |
INCLUDE_CONTEXT_PATH_ATTRIBUTE
|
static java.lang.String |
INCLUDE_PATH_INFO_ATTRIBUTE
|
static java.lang.String |
INCLUDE_QUERY_STRING_ATTRIBUTE
|
static java.lang.String |
INCLUDE_REQUEST_URI_ATTRIBUTE
Standard Servlet 2.3+ spec request attributes for include URI and paths. |
static java.lang.String |
INCLUDE_SERVLET_PATH_ATTRIBUTE
|
static java.lang.String |
SESSION_MUTEX_ATTRIBUTE
Key for the mutex session attribute |
static java.lang.String[] |
SUBMIT_IMAGE_SUFFIXES
Name suffixes in case of image buttons |
static java.lang.String |
TEMP_DIR_CONTEXT_ATTRIBUTE
Standard Servlet spec context attribute that specifies a temporary directory for the current web application, of type java.io.File . |
static java.lang.String |
WEB_APP_ROOT_KEY_PARAM
Web app root key parameter at the servlet context level (i.e. |
Constructor Summary | |
---|---|
WebUtils()
|
Method Summary | ||
---|---|---|
static void |
clearErrorRequestAttributes(HttpServletRequest request)
Clear the Servlet spec's error attributes as javax.servlet.http.HttpServletRequest
attributes under the keys defined in the Servlet 2.3 specification:
javax.servlet.error.status_code ,
javax.servlet.error.exception_type ,
javax.servlet.error.message ,
javax.servlet.error.exception ,
javax.servlet.error.request_uri ,
javax.servlet.error.servlet_name . |
|
static void |
exposeErrorRequestAttributes(HttpServletRequest request,
java.lang.Throwable ex,
java.lang.String servletName)
Expose the Servlet spec's error attributes as javax.servlet.http.HttpServletRequest
attributes under the keys defined in the Servlet 2.3 specification, for error pages that
are rendered directly rather than through the Servlet container's error page resolution:
javax.servlet.error.status_code ,
javax.servlet.error.exception_type ,
javax.servlet.error.message ,
javax.servlet.error.exception ,
javax.servlet.error.request_uri ,
javax.servlet.error.servlet_name . |
|
static void |
exposeForwardRequestAttributes(HttpServletRequest request)
Expose the current request URI and paths as javax.servlet.http.HttpServletRequest
attributes under the keys defined in the Servlet 2.4 specification,
for containers that implement 2.3 or an earlier version of the Servlet API:
javax.servlet.forward.request_uri ,
javax.servlet.forward.context_path ,
javax.servlet.forward.servlet_path ,
javax.servlet.forward.path_info ,
javax.servlet.forward.query_string . |
|
private static void |
exposeRequestAttributeIfNotPresent(ServletRequest request,
java.lang.String name,
java.lang.Object value)
Expose the specified request attribute if not already present. |
|
static void |
exposeRequestAttributes(ServletRequest request,
java.util.Map<java.lang.String,?> attributes)
Expose the given Map as request attributes, using the keys as attribute names and the values as corresponding attribute values. |
|
static java.lang.String |
extractFilenameFromUrlPath(java.lang.String urlPath)
Extract the URL filename from the given request URL path. |
|
static java.lang.String |
extractFullFilenameFromUrlPath(java.lang.String urlPath)
Extract the full URL filename (including file extension) from the given request URL path. |
|
static java.lang.String |
findParameterValue(ServletRequest request,
java.lang.String name)
Obtain a named parameter from the given request parameters. |
|
static Cookie |
getCookie(HttpServletRequest request,
java.lang.String name)
Retrieve the first cookie with the given name. |
|
static java.lang.Boolean |
getDefaultHtmlEscape(ServletContext servletContext)
Return whether default HTML escaping is enabled for the web application, i.e. |
|
static
|
getNativeRequest(ServletRequest request,
java.lang.Class<T> requiredType)
Return an appropriate request object of the specified type, if available, unwrapping the given request as far as necessary. |
|
static
|
getNativeResponse(ServletResponse response,
java.lang.Class<T> requiredType)
Return an appropriate response object of the specified type, if available, unwrapping the given response as far as necessary. |
|
static java.lang.Object |
getOrCreateSessionAttribute(HttpSession session,
java.lang.String name,
java.lang.Class clazz)
Get the specified session attribute, creating and setting a new attribute if no existing found. |
|
static java.util.Map<java.lang.String,java.lang.Object> |
getParametersStartingWith(ServletRequest request,
java.lang.String prefix)
Return a map containing all parameters with the given prefix. |
|
static java.lang.String |
getRealPath(ServletContext servletContext,
java.lang.String path)
Return the real path of the given path within the web application, as provided by the servlet container. |
|
static java.lang.Object |
getRequiredSessionAttribute(HttpServletRequest request,
java.lang.String name)
Check the given request for a session attribute of the given name. |
|
static java.lang.Object |
getSessionAttribute(HttpServletRequest request,
java.lang.String name)
Check the given request for a session attribute of the given name. |
|
static java.lang.String |
getSessionId(HttpServletRequest request)
Determine the session id of the given request, if any. |
|
static java.lang.Object |
getSessionMutex(HttpSession session)
Return the best available mutex for the given session: that is, an object to synchronize on for the given session. |
|
static int |
getTargetPage(ServletRequest request,
java.lang.String paramPrefix,
int currentPage)
Return the target page specified in the request. |
|
static java.io.File |
getTempDir(ServletContext servletContext)
Return the temporary directory for the current web application, as provided by the servlet container. |
|
static boolean |
hasSubmitParameter(ServletRequest request,
java.lang.String name)
Check if a specific input type="submit" parameter was sent in the request, either via a button (directly with name) or via an image (name + ".x" or name + ".y"). |
|
static boolean |
isDefaultHtmlEscape(ServletContext servletContext)
Return whether default HTML escaping is enabled for the web application, i.e. |
|
static boolean |
isIncludeRequest(ServletRequest request)
Determine whether the given request is an include request, that is, not a top-level HTTP request coming in from the outside. |
|
static void |
removeWebAppRootSystemProperty(ServletContext servletContext)
Remove the system property that points to the web app root directory. |
|
static void |
setSessionAttribute(HttpServletRequest request,
java.lang.String name,
java.lang.Object value)
Set the session attribute with the given name to the given value. |
|
static void |
setWebAppRootSystemProperty(ServletContext servletContext)
Set a system property to the web application root directory. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final java.lang.String INCLUDE_REQUEST_URI_ATTRIBUTE
If included via a RequestDispatcher, the current resource will see the originating request. Its own URI and paths are exposed as request attributes.
public static final java.lang.String INCLUDE_CONTEXT_PATH_ATTRIBUTE
public static final java.lang.String INCLUDE_SERVLET_PATH_ATTRIBUTE
public static final java.lang.String INCLUDE_PATH_INFO_ATTRIBUTE
public static final java.lang.String INCLUDE_QUERY_STRING_ATTRIBUTE
public static final java.lang.String FORWARD_REQUEST_URI_ATTRIBUTE
If forwarded to via a RequestDispatcher, the current resource will see its own URI and paths. The originating URI and paths are exposed as request attributes.
public static final java.lang.String FORWARD_CONTEXT_PATH_ATTRIBUTE
public static final java.lang.String FORWARD_SERVLET_PATH_ATTRIBUTE
public static final java.lang.String FORWARD_PATH_INFO_ATTRIBUTE
public static final java.lang.String FORWARD_QUERY_STRING_ATTRIBUTE
public static final java.lang.String ERROR_STATUS_CODE_ATTRIBUTE
To be exposed to JSPs that are marked as error pages, when forwarding to them directly rather than through the servlet container's error page resolution mechanism.
public static final java.lang.String ERROR_EXCEPTION_TYPE_ATTRIBUTE
public static final java.lang.String ERROR_MESSAGE_ATTRIBUTE
public static final java.lang.String ERROR_EXCEPTION_ATTRIBUTE
public static final java.lang.String ERROR_REQUEST_URI_ATTRIBUTE
public static final java.lang.String ERROR_SERVLET_NAME_ATTRIBUTE
public static final java.lang.String CONTENT_TYPE_CHARSET_PREFIX
public static final java.lang.String DEFAULT_CHARACTER_ENCODING
request.getCharacterEncoding
returns null
, according to the Servlet spec.
ServletRequest#getCharacterEncoding
,
Constant Field Valuespublic static final java.lang.String TEMP_DIR_CONTEXT_ATTRIBUTE
java.io.File
.
public static final java.lang.String HTML_ESCAPE_CONTEXT_PARAM
web.xml
): "defaultHtmlEscape".
public static final java.lang.String WEB_APP_ROOT_KEY_PARAM
web.xml
): "webAppRootKey".
public static final java.lang.String DEFAULT_WEB_APP_ROOT_KEY
public static final java.lang.String[] SUBMIT_IMAGE_SUFFIXES
public static final java.lang.String SESSION_MUTEX_ATTRIBUTE
Constructor Detail |
---|
public WebUtils()
Method Detail |
---|
public static void setWebAppRootSystemProperty(ServletContext servletContext) throws java.lang.IllegalStateException
web.xml
. Default is "webapp.root".
Can be used for tools that support substition with System.getProperty
values, like log4j's "${key}" syntax within log file locations.
servletContext
- the servlet context of the web application
java.lang.IllegalStateException
- if the system property is already set,
or if the WAR file is not expandedWEB_APP_ROOT_KEY_PARAM
,
DEFAULT_WEB_APP_ROOT_KEY
,
WebAppRootListener
,
Log4jWebConfigurer
public static void removeWebAppRootSystemProperty(ServletContext servletContext)
servletContext
- the servlet context of the web applicationsetWebAppRootSystemProperty(ServletContext)
public static boolean isDefaultHtmlEscape(ServletContext servletContext)
web.xml
(if any). Falls back to false
in case of no explicit default given.
servletContext
- the servlet context of the web application
public static java.lang.Boolean getDefaultHtmlEscape(ServletContext servletContext)
web.xml
(if any).
This method differentiates between no param specified at all and an actual boolean value specified, allowing to have a context-specific default in case of no setting at the global level.
servletContext
- the servlet context of the web application
public static java.io.File getTempDir(ServletContext servletContext)
servletContext
- the servlet context of the web application
public static java.lang.String getRealPath(ServletContext servletContext, java.lang.String path) throws java.io.FileNotFoundException
Prepends a slash if the path does not already start with a slash,
and throws a FileNotFoundException if the path cannot be resolved to
a resource (in contrast to ServletContext's getRealPath
,
which returns null).
servletContext
- the servlet context of the web applicationpath
- the path within the web application
java.io.FileNotFoundException
- if the path cannot be resolved to a resourcejavax.servlet.ServletContext#getRealPath
public static java.lang.String getSessionId(HttpServletRequest request)
request
- current HTTP request
null
if nonepublic static java.lang.Object getSessionAttribute(HttpServletRequest request, java.lang.String name)
request
- current HTTP requestname
- the name of the session attribute
null
if not foundpublic static java.lang.Object getRequiredSessionAttribute(HttpServletRequest request, java.lang.String name) throws java.lang.IllegalStateException
request
- current HTTP requestname
- the name of the session attribute
null
if not found
java.lang.IllegalStateException
- if the session attribute could not be foundpublic static void setSessionAttribute(HttpServletRequest request, java.lang.String name, java.lang.Object value)
request
- current HTTP requestname
- the name of the session attributevalue
- the value of the session attributepublic static java.lang.Object getOrCreateSessionAttribute(HttpSession session, java.lang.String name, java.lang.Class clazz) throws java.lang.IllegalArgumentException
session
- current HTTP sessionname
- the name of the session attributeclazz
- the class to instantiate for a new attribute
java.lang.IllegalArgumentException
- if the session attribute could not be instantiatedpublic static java.lang.Object getSessionMutex(HttpSession session)
Returns the session mutex attribute if available; usually,
this means that the HttpSessionMutexListener needs to be defined
in web.xml
. Falls back to the HttpSession itself
if no mutex attribute found.
The session mutex is guaranteed to be the same object during
the entire lifetime of the session, available under the key defined
by the SESSION_MUTEX_ATTRIBUTE
constant. It serves as a
safe reference to synchronize on for locking on the current session.
In many cases, the HttpSession reference itself is a safe mutex as well, since it will always be the same object reference for the same active logical session. However, this is not guaranteed across different servlet containers; the only 100% safe way is a session mutex.
session
- the HttpSession to find a mutex for
null
)SESSION_MUTEX_ATTRIBUTE
,
HttpSessionMutexListener
public static <T> T getNativeRequest(ServletRequest request, java.lang.Class<T> requiredType)
request
- the servlet request to introspectrequiredType
- the desired type of request object
null
if none
of that type is availablepublic static <T> T getNativeResponse(ServletResponse response, java.lang.Class<T> requiredType)
response
- the servlet response to introspectrequiredType
- the desired type of response object
null
if none
of that type is availablepublic static boolean isIncludeRequest(ServletRequest request)
Checks the presence of the "javax.servlet.include.request_uri" request attribute. Could check any request attribute that is only present in an include request.
request
- current servlet request
public static void exposeForwardRequestAttributes(HttpServletRequest request)
javax.servlet.http.HttpServletRequest
attributes under the keys defined in the Servlet 2.4 specification,
for containers that implement 2.3 or an earlier version of the Servlet API:
javax.servlet.forward.request_uri
,
javax.servlet.forward.context_path
,
javax.servlet.forward.servlet_path
,
javax.servlet.forward.path_info
,
javax.servlet.forward.query_string
.
Does not override values if already present, to not cause conflicts with the attributes exposed by Servlet 2.4+ containers themselves.
request
- current servlet requestpublic static void exposeErrorRequestAttributes(HttpServletRequest request, java.lang.Throwable ex, java.lang.String servletName)
javax.servlet.http.HttpServletRequest
attributes under the keys defined in the Servlet 2.3 specification, for error pages that
are rendered directly rather than through the Servlet container's error page resolution:
javax.servlet.error.status_code
,
javax.servlet.error.exception_type
,
javax.servlet.error.message
,
javax.servlet.error.exception
,
javax.servlet.error.request_uri
,
javax.servlet.error.servlet_name
.
Does not override values if already present, to respect attribute values that have been exposed explicitly before.
Exposes status code 200 by default. Set the "javax.servlet.error.status_code" attribute explicitly (before or after) in order to expose a different status code.
request
- current servlet requestex
- the exception encounteredservletName
- the name of the offending servletprivate static void exposeRequestAttributeIfNotPresent(ServletRequest request, java.lang.String name, java.lang.Object value)
request
- current servlet requestname
- the name of the attributevalue
- the suggested value of the attributepublic static void clearErrorRequestAttributes(HttpServletRequest request)
javax.servlet.http.HttpServletRequest
attributes under the keys defined in the Servlet 2.3 specification:
javax.servlet.error.status_code
,
javax.servlet.error.exception_type
,
javax.servlet.error.message
,
javax.servlet.error.exception
,
javax.servlet.error.request_uri
,
javax.servlet.error.servlet_name
.
request
- current servlet requestpublic static void exposeRequestAttributes(ServletRequest request, java.util.Map<java.lang.String,?> attributes)
request
- current HTTP requestattributes
- the attributes Mappublic static Cookie getCookie(HttpServletRequest request, java.lang.String name)
request
- current servlet requestname
- cookie name
null
if none is foundpublic static boolean hasSubmitParameter(ServletRequest request, java.lang.String name)
request
- current HTTP requestname
- name of the parameter
SUBMIT_IMAGE_SUFFIXES
public static java.lang.String findParameterValue(ServletRequest request, java.lang.String name)
See #findParameterValue(java.util.Map, String)
for a description of the lookup algorithm.
request
- current HTTP requestname
- the logical name of the request parameter
null
if the parameter does not exist in given requestpublic static java.util.Map<java.lang.String,java.lang.Object> getParametersStartingWith(ServletRequest request, java.lang.String prefix)
For example, with a prefix of "spring_", "spring_param1" and "spring_param2" result in a Map with "param1" and "param2" as keys.
request
- HTTP request in which to look for parametersprefix
- the beginning of parameter names
(if this is null or the empty string, all parameters will match)
javax.servlet.ServletRequest#getParameterNames
,
javax.servlet.ServletRequest#getParameterValues
,
javax.servlet.ServletRequest#getParameterMap
public static int getTargetPage(ServletRequest request, java.lang.String paramPrefix, int currentPage)
request
- current servlet requestparamPrefix
- the parameter prefix to check for
(e.g. "_target" for parameters like "_target1" or "_target2")currentPage
- the current page, to be returned as fallback
if no target page specified
public static java.lang.String extractFilenameFromUrlPath(java.lang.String urlPath)
urlPath
- the request URL path (e.g. "/index.html")
public static java.lang.String extractFullFilenameFromUrlPath(java.lang.String urlPath)
urlPath
- the request URL path (e.g. "/products/index.html")
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |