Uses of Interface
org.springframework.http.server.PathContainer
Packages that use PathContainer Package Description org.springframework.http.server Contains an abstraction over server-side HTTP.org.springframework.mock.web.reactive.function.server Mock objects for the functional web framework.org.springframework.web.reactive.function.server Provides the types that make up Spring's functional web framework for Reactive environments.org.springframework.web.reactive.function.server.support Classes supporting theorg.springframework.web.reactive.function.serverpackage.org.springframework.web.reactive.handler Provides HandlerMapping implementations including abstract base classes.org.springframework.web.servlet.function Provides the types that make up Spring's functional web framework for Servlet environments.org.springframework.web.util.pattern Dedicated support for matching HTTP request paths.Uses of PathContainer in org.springframework.http.server
Subinterfaces of PathContainer in org.springframework.http.server Modifier and Type Interface Description interfaceRequestPathRepresents the complete path for a request.Methods in org.springframework.http.server that return PathContainer Modifier and Type Method Description PathContainerRequestPath. contextPath()Returns the portion of the URL path that represents the application.static PathContainerPathContainer. parsePath(String path)static PathContainerPathContainer. parsePath(String path, PathContainer.Options options)Parse the path value into a sequence ofSeparatorandPathSegmentelements.PathContainerRequestPath. pathWithinApplication()The portion of the request path after the context path.default PathContainerPathContainer. subPath(int index)Extract a sub-path from the given offset into the elements list.default PathContainerPathContainer. subPath(int startIndex, int endIndex)Extract a sub-path from the given start offset into the element list (inclusive) and to the end offset (exclusive).Uses of PathContainer in org.springframework.mock.web.reactive.function.server
Methods in org.springframework.mock.web.reactive.function.server that return PathContainer Modifier and Type Method Description PathContainerMockServerRequest. pathContainer()Uses of PathContainer in org.springframework.web.reactive.function.server
Methods in org.springframework.web.reactive.function.server that return PathContainer Modifier and Type Method Description default PathContainerServerRequest. pathContainer()Get the request path as aPathContainer.Uses of PathContainer in org.springframework.web.reactive.function.server.support
Methods in org.springframework.web.reactive.function.server.support that return PathContainer Modifier and Type Method Description PathContainerServerRequestWrapper. pathContainer()Uses of PathContainer in org.springframework.web.reactive.handler
Methods in org.springframework.web.reactive.handler with parameters of type PathContainer Modifier and Type Method Description protected ObjectAbstractUrlHandlerMapping. lookupHandler(PathContainer lookupPath, ServerWebExchange exchange)Look up a handler instance for the given URL lookup path.Uses of PathContainer in org.springframework.web.servlet.function
Methods in org.springframework.web.servlet.function that return PathContainer Modifier and Type Method Description default PathContainerServerRequest. pathContainer()Get the request path as aPathContainer.Uses of PathContainer in org.springframework.web.util.pattern
Methods in org.springframework.web.util.pattern that return PathContainer Modifier and Type Method Description PathContainerPathPattern. extractPathWithinPattern(PathContainer path)Determine the pattern-mapped part for the given path.PathContainerPathPattern.PathRemainingMatchInfo. getPathRemaining()Return the part of a path that was not matched by a pattern.Methods in org.springframework.web.util.pattern with parameters of type PathContainer Modifier and Type Method Description PathContainerPathPattern. extractPathWithinPattern(PathContainer path)Determine the pattern-mapped part for the given path.PathPattern.PathMatchInfoPathPattern. matchAndExtract(PathContainer pathContainer)Match this pattern to the given URI path and return extracted URI template variables as well as path parameters (matrix variables).booleanPathPattern. matches(PathContainer pathContainer)Whether this pattern matches the given path.PathPattern.PathRemainingMatchInfoPathPattern. matchStartOfPath(PathContainer pathContainer)Match the beginning of the given path and return the remaining portion not covered by this pattern.