Uses of Interface
org.springframework.http.server.RequestPath
Package
Description
Contains an abstraction over server-side HTTP.
Abstractions for reactive HTTP server support including a
ServerHttpRequest
and
ServerHttpResponse
along with an
HttpHandler
for processing.Mock objects for the functional web framework.
Provides the types that make up Spring's functional web framework for Reactive environments.
Classes supporting the
org.springframework.web.reactive.function.server
package.Provides the types that make up Spring's functional web framework for Servlet environments.
Provides standard HandlerMapping implementations,
including abstract base classes for custom implementations.
Miscellaneous web utility classes, such as HTML escaping and cookie handling.
-
Uses of RequestPath in org.springframework.http.server
Modifier and TypeMethodDescriptionRequestPath.modifyContextPath
(String contextPath) Return a newRequestPath
instance with a modified context path.static RequestPath
Variant ofparse(URI, String)
with the encodedraw path
.static RequestPath
Parse the URI for a request into aRequestPath
. -
Uses of RequestPath in org.springframework.http.server.reactive
-
Uses of RequestPath in org.springframework.mock.web.reactive.function.server
-
Uses of RequestPath in org.springframework.web.reactive.function.server
Modifier and TypeMethodDescriptiondefault RequestPath
ServerRequest.requestPath()
Get the request path as aPathContainer
. -
Uses of RequestPath in org.springframework.web.reactive.function.server.support
-
Uses of RequestPath in org.springframework.web.servlet.function
Modifier and TypeMethodDescriptiondefault RequestPath
ServerRequest.requestPath()
Get the request path as aPathContainer
. -
Uses of RequestPath in org.springframework.web.servlet.handler
Modifier and TypeMethodDescriptionprotected Object
AbstractUrlHandlerMapping.lookupHandler
(RequestPath path, String lookupPath, HttpServletRequest request) Look up a handler instance for the given URL path. -
Uses of RequestPath in org.springframework.web.util
Modifier and TypeMethodDescriptionstatic RequestPath
ServletRequestPathUtils.getParsedRequestPath
(ServletRequest request) Return apreviously
parsed and cachedRequestPath
.static RequestPath
ServletRequestPathUtils.parseAndCache
(HttpServletRequest request) Parse therequestURI
to aRequestPath
and save it in the request attributeServletRequestPathUtils.PATH_ATTRIBUTE
for subsequent use withparsed patterns
.Modifier and TypeMethodDescriptionstatic void
ServletRequestPathUtils.setParsedRequestPath
(RequestPath requestPath, ServletRequest request) Set the cached, parsedRequestPath
to the given value.