Class RequestMatchResult

java.lang.Object
org.springframework.web.servlet.handler.RequestMatchResult

public class RequestMatchResult extends Object
Container for the result from request pattern matching via MatchableHandlerMapping with a method to further extract URI template variables from the pattern.
Since:
4.3.1
Author:
Rossen Stoyanchev
  • Constructor Details

    • RequestMatchResult

      public RequestMatchResult(PathPattern pathPattern, PathContainer lookupPath)
      Create an instance with the matched PathPattern.
      Parameters:
      pathPattern - the pattern that was matched
      lookupPath - the mapping path
      Since:
      5.3
    • RequestMatchResult

      public RequestMatchResult(String pattern, String lookupPath, PathMatcher pathMatcher)
      Create an instance with the matched String pattern.
      Parameters:
      pattern - the pattern that was matched, possibly with a '/' appended
      lookupPath - the mapping path
      pathMatcher - the PathMatcher instance used for the match
  • Method Details