Generated by
JDiff

Class org.springframework.web.reactive.function.server.RequestPredicates

Removed Methods
RequestPredicate path(String, PathMatcher) Return a {@code RequestPredicate} that tests against the given path pattern using the given matcher.
 

Added Methods
RequestPredicate pathExtension(String) Return a {@code RequestPredicate} that matches if the request's path has the given extension.
RequestPredicate pathExtension(Predicate<String>) Return a {@code RequestPredicate} that matches if the request's path matches the given predicate.
(Function<String, RequestPredicate>pathPredicates(PathPatternParser) Return a function that creates new path-matching {@code RequestPredicates} from pattern Strings using the given PathPatternParser.
RequestPredicate pathPrefix(String) Return a {@code RequestPredicate} that tests the beginning of the request path against the given path pattern.
RequestPredicate queryParam(String, Predicate<String>) Return a {@code RequestPredicate} that tests the request's query parameter of the given name against the given predicate.