public final class RegexRequestMatcher extends Object implements RequestMatcher
HttpServletRequest. Can also be configured to match a specific HTTP
method. The match is performed against the servletPath + pathInfo + queryString of the
request and is
case-sensitive by default. Case-insensitive matching can be used by using the
constructor which takes the caseInsentitive argument.| Constructor and Description |
|---|
RegexRequestMatcher(String pattern,
String httpMethod)
Creates a case-sensitive
Pattern instance to match against the
request. |
RegexRequestMatcher(String pattern,
String httpMethod,
boolean caseInsensitive)
As above, but allows setting of whether case-insensitive matching should
be used.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
matches(javax.servlet.http.HttpServletRequest request)
Performs the match of the request URL (
servletPath + pathInfo + queryString) against
the compiled
pattern. |
public RegexRequestMatcher(String pattern, String httpMethod)
Pattern instance to match against the
request.pattern - the regular expression to compile into a pattern.httpMethod - the HTTP method to match. May be null to match all methods.public RegexRequestMatcher(String pattern, String httpMethod, boolean caseInsensitive)
pattern - the regular expression to compile into a pattern.httpMethod - the HTTP method to match. May be null to match all methods.caseInsensitive - if true, the pattern will be compiled with the Pattern.CASE_INSENSITIVE flag
set.public boolean matches(javax.servlet.http.HttpServletRequest request)
servletPath + pathInfo + queryString) against
the compiled
pattern.matches in interface RequestMatcherrequest - the request to matchCopyright © 2005–2018 The Beangle Software. All rights reserved.