Java org.springframework.web.util UrlPathHelper fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.web.util UrlPathHelper fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.web.util UrlPathHelper.

The text is from its open source code.

Subclass

org.springframework.web.util.UrlPathHelper has subclasses.
Click this link to see all its subclasses.

Constructor

Method

StringdecodeRequestString(HttpServletRequest request, String source)
Decode the given source string with a URLDecoder.
StringgetContextPath(HttpServletRequest request)
Return the context path for the given request, detecting an include request URL if called within a RequestDispatcher include.
StringgetLookupPathForRequest(HttpServletRequest request)
Return the mapping lookup path for the given request, within the current servlet mapping if applicable, else within the web application.
StringgetOriginatingContextPath(HttpServletRequest request)
Return the context path for the given request, detecting an include request URL if called within a RequestDispatcher include.
StringgetOriginatingQueryString(HttpServletRequest request)
Return the query string part of the given request's URL.
StringgetOriginatingRequestUri(HttpServletRequest request)
Return the request URI for the given request.
StringgetOriginatingServletPath(HttpServletRequest request)
Return the servlet path for the given request, detecting an include request URL if called within a RequestDispatcher include.
StringgetPathWithinApplication(HttpServletRequest request)
Return the path within the web application for the given request.
StringgetPathWithinServletMapping(HttpServletRequest request)
Return the path within the servlet mapping for the given request, i.e.
StringgetRequestUri(HttpServletRequest request)
Return the request URI for the given request, detecting an include request URL if called within a RequestDispatcher include.
StringgetServletPath(HttpServletRequest request)
Return the servlet path for the given request, regarding an include request URL if called within a RequestDispatcher include.
voidsetAlwaysUseFullPath(boolean alwaysUseFullPath)
Whether URL lookups should always use the full path within the current web application context, i.e.
voidsetRemoveSemicolonContent(boolean removeSemicolonContent)
Set if ";" (semicolon) content should be stripped from the request URI.
voidsetUrlDecode(boolean urlDecode)
Whether the context path and request URI should be decoded -- both of which are returned undecoded by the Servlet API, in contrast to the servlet path.