org.eclipse.jetty.rewrite.handler
类 RedirectRegexRule
java.lang.Object
org.eclipse.jetty.rewrite.handler.Rule
org.eclipse.jetty.rewrite.handler.RegexRule
org.eclipse.jetty.rewrite.handler.RedirectRegexRule
public class RedirectRegexRule
- extends RegexRule
Redirects the response by matching with a regular expression.
The replacement string may use $n" to replace the nth capture group.
RedirectRegexRule
public RedirectRegexRule()
setReplacement
public void setReplacement(String replacement)
- Whenever a match is found, it replaces with this value.
- 参数:
replacement - the replacement string.
apply
protected String apply(String target,
HttpServletRequest request,
HttpServletResponse response,
Matcher matcher)
throws IOException
- 从类
RegexRule 复制的描述
- Apply this rule to the request/response pair.
Called by
RegexRule.matchAndApply(String, HttpServletRequest, HttpServletResponse) if the regex matches.
- 指定者:
- 类
RegexRule 中的 apply
- 参数:
target - field to attempt matchrequest - request objectresponse - response objectmatcher - The Regex matcher that matched the request (with capture groups available for replacement).
- 返回:
- The target (possible updated).
- 抛出:
IOException - exceptions dealing with operating on request or response objects
Copyright © 2013. All Rights Reserved.