Class RequestPredicates
java.lang.Object
org.springframework.web.reactive.function.server.RequestPredicates
Implementations of
RequestPredicate
that implement various useful
request matching operations, such as matching based on path, HTTP method, etc.- Since:
- 5.0
- Author:
- Arjen Poutsma
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
Receives notifications from the logical structure of request predicates. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic RequestPredicate
Return aRequestPredicate
that tests if the request's accept header is compatible with any of the given media types.static RequestPredicate
all()
Return aRequestPredicate
that always matches.static RequestPredicate
contentType
(MediaType... mediaTypes) Return aRequestPredicate
that tests if the request's content type is included by any of the given media types.static RequestPredicate
Return aRequestPredicate
that matches if request's HTTP method isDELETE
and the givenpattern
matches against the request path.static RequestPredicate
Return aRequestPredicate
that matches if request's HTTP method isGET
and the givenpattern
matches against the request path.static RequestPredicate
Return aRequestPredicate
that matches if request's HTTP method isHEAD
and the givenpattern
matches against the request path.static RequestPredicate
headers
(Predicate<ServerRequest.Headers> headersPredicate) Return aRequestPredicate
that tests the request's headers against the given headers predicate.static RequestPredicate
method
(HttpMethod httpMethod) Return aRequestPredicate
that matches if the request's HTTP method is equal to the given method.static RequestPredicate
methods
(HttpMethod... httpMethods) Return aRequestPredicate
that matches if the request's HTTP method is equal to one the of the given methods.static RequestPredicate
Return aRequestPredicate
that matches if request's HTTP method isOPTIONS
and the givenpattern
matches against the request path.static RequestPredicate
Return aRequestPredicate
that matches if request's HTTP method isPATCH
and the givenpattern
matches against the request path.static RequestPredicate
Return aRequestPredicate
that tests the request path against the given path pattern.static RequestPredicate
pathExtension
(String extension) Return aRequestPredicate
that matches if the request's path has the given extension.static RequestPredicate
pathExtension
(Predicate<String> extensionPredicate) Return aRequestPredicate
that matches if the request's path matches the given predicate.static Function<String,
RequestPredicate> pathPredicates
(PathPatternParser patternParser) Return a function that creates new path-matchingRequestPredicates
from pattern Strings using the givenPathPatternParser
.static RequestPredicate
Return aRequestPredicate
that matches if request's HTTP method isPOST
and the givenpattern
matches against the request path.static RequestPredicate
Return aRequestPredicate
that matches if request's HTTP method isPUT
and the givenpattern
matches against the request path.static RequestPredicate
queryParam
(String name, String value) Return aRequestPredicate
that matches if the request's query parameter of the given name has the given value.static RequestPredicate
queryParam
(String name, Predicate<String> predicate) Return aRequestPredicate
that tests the request's query parameter of the given name against the given predicate.
-
Constructor Details
-
RequestPredicates
public RequestPredicates()
-
-
Method Details
-
all
Return aRequestPredicate
that always matches.- Returns:
- a predicate that always matches
-
method
Return aRequestPredicate
that matches if the request's HTTP method is equal to the given method.- Parameters:
httpMethod
- the HTTP method to match against- Returns:
- a predicate that tests against the given HTTP method
-
methods
Return aRequestPredicate
that matches if the request's HTTP method is equal to one the of the given methods.- Parameters:
httpMethods
- the HTTP methods to match against- Returns:
- a predicate that tests against the given HTTP methods
- Since:
- 5.1
-
path
Return aRequestPredicate
that tests the request path against the given path pattern.- Parameters:
pattern
- the pattern to match to- Returns:
- a predicate that tests against the given path pattern
- See Also:
-
pathPredicates
Return a function that creates new path-matchingRequestPredicates
from pattern Strings using the givenPathPatternParser
.This method can be used to specify a non-default, customized
PathPatternParser
when resolving path patterns.- Parameters:
patternParser
- the parser used to parse patterns given to the returned function- Returns:
- a function that resolves a pattern String into a path-matching
RequestPredicates
instance
-
headers
Return aRequestPredicate
that tests the request's headers against the given headers predicate.- Parameters:
headersPredicate
- a predicate that tests against the request headers- Returns:
- a predicate that tests against the given header predicate
-
contentType
Return aRequestPredicate
that tests if the request's content type is included by any of the given media types.- Parameters:
mediaTypes
- the media types to match the request's content type against- Returns:
- a predicate that tests the request's content type against the given media types
-
accept
Return aRequestPredicate
that tests if the request's accept header is compatible with any of the given media types.- Parameters:
mediaTypes
- the media types to match the request's accept header against- Returns:
- a predicate that tests the request's accept header against the given media types
-
GET
Return aRequestPredicate
that matches if request's HTTP method isGET
and the givenpattern
matches against the request path.- Parameters:
pattern
- the path pattern to match against- Returns:
- a predicate that matches if the request method is GET and if the given pattern matches against the request path
- See Also:
-
HEAD
Return aRequestPredicate
that matches if request's HTTP method isHEAD
and the givenpattern
matches against the request path.- Parameters:
pattern
- the path pattern to match against- Returns:
- a predicate that matches if the request method is HEAD and if the given pattern matches against the request path
- See Also:
-
POST
Return aRequestPredicate
that matches if request's HTTP method isPOST
and the givenpattern
matches against the request path.- Parameters:
pattern
- the path pattern to match against- Returns:
- a predicate that matches if the request method is POST and if the given pattern matches against the request path
- See Also:
-
PUT
Return aRequestPredicate
that matches if request's HTTP method isPUT
and the givenpattern
matches against the request path.- Parameters:
pattern
- the path pattern to match against- Returns:
- a predicate that matches if the request method is PUT and if the given pattern matches against the request path
- See Also:
-
PATCH
Return aRequestPredicate
that matches if request's HTTP method isPATCH
and the givenpattern
matches against the request path.- Parameters:
pattern
- the path pattern to match against- Returns:
- a predicate that matches if the request method is PATCH and if the given pattern matches against the request path
- See Also:
-
DELETE
Return aRequestPredicate
that matches if request's HTTP method isDELETE
and the givenpattern
matches against the request path.- Parameters:
pattern
- the path pattern to match against- Returns:
- a predicate that matches if the request method is DELETE and if the given pattern matches against the request path
- See Also:
-
OPTIONS
Return aRequestPredicate
that matches if request's HTTP method isOPTIONS
and the givenpattern
matches against the request path.- Parameters:
pattern
- the path pattern to match against- Returns:
- a predicate that matches if the request method is OPTIONS and if the given pattern matches against the request path
- See Also:
-
pathExtension
Return aRequestPredicate
that matches if the request's path has the given extension.- Parameters:
extension
- the path extension to match against, ignoring case- Returns:
- a predicate that matches if the request's path has the given file extension
-
pathExtension
Return aRequestPredicate
that matches if the request's path matches the given predicate.- Parameters:
extensionPredicate
- the predicate to test against the request path extension- Returns:
- a predicate that matches if the given predicate matches against the request's path file extension
-
queryParam
Return aRequestPredicate
that matches if the request's query parameter of the given name has the given value.- Parameters:
name
- the name of the query parameter to test againstvalue
- the value of the query parameter to test against- Returns:
- a predicate that matches if the query parameter has the given value
- Since:
- 5.0.7
- See Also:
-
queryParam
Return aRequestPredicate
that tests the request's query parameter of the given name against the given predicate.- Parameters:
name
- the name of the query parameter to test againstpredicate
- the predicate to test against the query parameter value- Returns:
- a predicate that matches the given predicate against the query parameter of the given name
- See Also:
-