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.
This package contains classes used to determine the requested the media types in a request.
RequestedContentTypeResolver
strategy and implementations to resolve the requested content type for a
given request.Spring WebFlux configuration infrastructure.
Provides the types that make up Spring's functional web framework for Reactive environments.
Classes supporting the
org.springframework.web.reactive.function.server package.Annotation-based setup for Spring MVC.
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.accept
Constructor parameters in org.springframework.web.accept with type arguments of type RequestPathModifierConstructorDescriptionPathApiVersionResolver(int pathSegmentIndex, Predicate<RequestPath> versionPathPredicate) Constructor variant ofPathApiVersionResolver(int)with an additionalPredicate<RequestPath>to help determine whether a given path is versioned (true) or not (false). -
Uses of RequestPath in org.springframework.web.reactive.accept
Constructor parameters in org.springframework.web.reactive.accept with type arguments of type RequestPathModifierConstructorDescriptionPathApiVersionResolver(int pathSegmentIndex, Predicate<RequestPath> versionPathPredicate) Constructor variant ofPathApiVersionResolver(int)with an additionalPredicate<RequestPath>to help determine whether a given path is versioned (true) or not (false). -
Uses of RequestPath in org.springframework.web.reactive.config
Method parameters in org.springframework.web.reactive.config with type arguments of type RequestPathModifier and TypeMethodDescriptionApiVersionConfigurer.usePathSegment(int index, Predicate<RequestPath> versionPathPredicate) Variant ofApiVersionConfigurer.usePathSegment(int)with aPredicate<RequestPath>to determine whether a given path is versioned, providing additional flexibility, and the option to resolve the version tonull. -
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.config.annotation
Method parameters in org.springframework.web.servlet.config.annotation with type arguments of type RequestPathModifier and TypeMethodDescriptionApiVersionConfigurer.usePathSegment(int index, Predicate<RequestPath> versionPathPredicate) Variant ofApiVersionConfigurer.usePathSegment(int)with aPredicate<RequestPath>to determine whether a given path is versioned, providing additional flexibility, and the option to resolve the version tonull. -
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.