Interface | Description |
---|---|
RequestMatcher |
Simple strategy to match an HttpServletRequest.
|
Class | Description |
---|---|
AndRequestMatcher |
RequestMatcher that will return true if all of the passed in
RequestMatcher instances match. |
AntPathRequestMatcher |
Matcher which compares a pre-defined ant-style pattern against the URL
(
servletPath + pathInfo ) of an HttpServletRequest . |
AnyRequestMatcher |
Matches any supplied request.
|
ELRequestMatcher |
A RequestMatcher implementation which uses a SpEL expression
|
IpAddressMatcher |
Matches a request based on IP Address or subnet mask matching against the remote address.
|
MediaTypeRequestMatcher |
Allows matching
HttpServletRequest based upon the MediaType 's
resolved from a ContentNegotiationStrategy . |
NegatedRequestMatcher |
A
RequestMatcher that will negate the RequestMatcher passed
in. |
OrRequestMatcher |
RequestMatcher that will return true if any of the passed in
RequestMatcher instances match. |
RegexRequestMatcher |
Uses a regular expression to decide whether a supplied the URL of a supplied
HttpServletRequest . |
RequestHeaderRequestMatcher |
A
RequestMatcher that can be used to match request that contain a
header with an expected header name and an expected value. |
RequestMatcherEditor |
PropertyEditor which creates ELRequestMatcher instances from Strings
This allows to use a String in a BeanDefinition instead of an (inner) bean
if a RequestMatcher is required, e.g.
|