| 接口 | 说明 |
|---|---|
| RequestMatcher |
Simple strategy to match an HttpServletRequest.
|
| 类 | 说明 |
|---|---|
| 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
With the default EvaluationContext (
ELRequestMatcherContext) you can use
hasIpAdress() and hasHeader() |
| 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. |
Copyright © 2016. All rights reserved.