Uses of Class
org.springframework.web.util.pattern.PathPatternParser
Packages that use PathPatternParser Package Description org.springframework.web.cors.reactive Reactive support for CORS (Cross-Origin Resource Sharing), based on a commonCorsProcessorstrategy.org.springframework.web.reactive.function.server Provides the types that make up Spring's functional web framework for Reactive environments.org.springframework.web.reactive.handler Provides HandlerMapping implementations including abstract base classes.org.springframework.web.reactive.result.method Infrastructure for handler method processing.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 PathPatternParser in org.springframework.web.cors.reactive
Constructors in org.springframework.web.cors.reactive with parameters of type PathPatternParser Constructor Description UrlBasedCorsConfigurationSource(PathPatternParser patternParser)Construct a newUrlBasedCorsConfigurationSourceinstance from the suppliedPathPatternParser.Uses of PathPatternParser in org.springframework.web.reactive.function.server
Methods in org.springframework.web.reactive.function.server with parameters of type PathPatternParser Modifier and Type Method Description static Function<String,RequestPredicate>RequestPredicates. pathPredicates(PathPatternParser patternParser)Return a function that creates new path-matchingRequestPredicatesfrom pattern Strings using the givenPathPatternParser.Uses of PathPatternParser in org.springframework.web.reactive.handler
Methods in org.springframework.web.reactive.handler that return PathPatternParser Modifier and Type Method Description PathPatternParserAbstractHandlerMapping. getPathPatternParser()Return thePathPatternParserinstance that is used forCORS configuration checks.Uses of PathPatternParser in org.springframework.web.reactive.result.method
Methods in org.springframework.web.reactive.result.method that return PathPatternParser Modifier and Type Method Description PathPatternParserRequestMappingInfo.BuilderConfiguration. getPatternParser()Methods in org.springframework.web.reactive.result.method with parameters of type PathPatternParser Modifier and Type Method Description voidRequestMappingInfo.BuilderConfiguration. setPatternParser(PathPatternParser patternParser)Uses of PathPatternParser in org.springframework.web.servlet.function
Methods in org.springframework.web.servlet.function with parameters of type PathPatternParser Modifier and Type Method Description static Function<String,RequestPredicate>RequestPredicates. pathPredicates(PathPatternParser patternParser)Return a function that creates new path-matchingRequestPredicatesfrom pattern Strings using the givenPathPatternParser.Uses of PathPatternParser in org.springframework.web.util.pattern
Fields in org.springframework.web.util.pattern declared as PathPatternParser Modifier and Type Field Description static PathPatternParserPathPatternParser. defaultInstanceShared, read-only instance ofPathPatternParser.Constructors in org.springframework.web.util.pattern with parameters of type PathPatternParser Constructor Description PathPatternRouteMatcher(PathPatternParser parser)Constructor with givenPathPatternParser.