Uses of Interface
org.springframework.http.server.RequestPath
Packages that use 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
Methods in org.springframework.http.server that return RequestPathModifier and TypeMethodDescriptionRequestPath.modifyContextPath(String contextPath) Return a newRequestPathinstance with a modified context path.static RequestPathVariant ofRequestPath.parse(URI, String)with the encodedraw path.static RequestPathParse the URI for a request into aRequestPath. -
Uses of RequestPath in org.springframework.http.server.reactive
Methods in org.springframework.http.server.reactive that return RequestPath -
Uses of RequestPath in org.springframework.mock.web.reactive.function.server
Methods in org.springframework.mock.web.reactive.function.server that return RequestPath -
Uses of RequestPath in org.springframework.web.reactive.function.server
Methods in org.springframework.web.reactive.function.server that return RequestPathModifier and TypeMethodDescriptiondefault RequestPathServerRequest.requestPath()Get the request path as aPathContainer. -
Uses of RequestPath in org.springframework.web.reactive.function.server.support
Methods in org.springframework.web.reactive.function.server.support that return RequestPath -
Uses of RequestPath in org.springframework.web.servlet.function
Methods in org.springframework.web.servlet.function that return RequestPathModifier and TypeMethodDescriptiondefault RequestPathServerRequest.requestPath()Get the request path as aPathContainer. -
Uses of RequestPath in org.springframework.web.servlet.handler
Methods in org.springframework.web.servlet.handler with parameters of type RequestPathModifier and TypeMethodDescriptionAbstractUrlHandlerMapping.lookupHandler(RequestPath path, String lookupPath, jakarta.servlet.http.HttpServletRequest request) Look up a handler instance for the given URL path. -
Uses of RequestPath in org.springframework.web.util
Methods in org.springframework.web.util that return RequestPathModifier and TypeMethodDescriptionstatic RequestPathServletRequestPathUtils.getParsedRequestPath(jakarta.servlet.ServletRequest request) Return apreviouslyparsed and cachedRequestPath.static RequestPathServletRequestPathUtils.parse(jakarta.servlet.http.HttpServletRequest request) Parse therequestURIto aRequestPath.static RequestPathServletRequestPathUtils.parseAndCache(jakarta.servlet.http.HttpServletRequest request) Variant ofServletRequestPathUtils.parse(HttpServletRequest)that also saves the parsed path in the request attributeServletRequestPathUtils.PATH_ATTRIBUTE.Methods in org.springframework.web.util with parameters of type RequestPathModifier and TypeMethodDescriptionstatic voidServletRequestPathUtils.setParsedRequestPath(@Nullable RequestPath requestPath, jakarta.servlet.ServletRequest request) Set the cached, parsedRequestPathto the given value.