类 SimpleRouteMatcher

java.lang.Object
cn.taketoday.util.SimpleRouteMatcher
所有已实现的接口:
RouteMatcher

public class SimpleRouteMatcher extends Object implements RouteMatcher
RouteMatcher that delegates to a PathMatcher.

Note: This implementation is not efficient since PathMatcher treats paths and patterns as Strings. For more optimized performance use the PathPatternRouteMatcher from today-web which enables use of parsed routes and patterns.

从以下版本开始:
4.0
作者:
Rossen Stoyanchev, TODAY 2021/11/6 20:49
  • 构造器详细资料

    • SimpleRouteMatcher

      public SimpleRouteMatcher(PathMatcher pathMatcher)
      Create a new SimpleRouteMatcher for the given PathMatcher delegate.
  • 方法详细资料

    • getPathMatcher

      public PathMatcher getPathMatcher()
      Return the underlying PathMatcher delegate.
    • parseRoute

      public RouteMatcher.Route parseRoute(String route)
      从接口复制的说明: RouteMatcher
      Return a parsed representation of the given route.
      指定者:
      parseRoute 在接口中 RouteMatcher
      参数:
      route - the route to parse
      返回:
      the parsed representation of the route
    • isPattern

      public boolean isPattern(String route)
      从接口复制的说明: RouteMatcher
      Whether the given route contains pattern syntax which requires the RouteMatcher.match(String, Route) method, or if it is a regular String that could be compared directly to others.
      指定者:
      isPattern 在接口中 RouteMatcher
      参数:
      route - the route to check
      返回:
      true if the given route represents a pattern
    • combine

      public String combine(String pattern1, String pattern2)
      从接口复制的说明: RouteMatcher
      Combines two patterns into a single pattern.
      指定者:
      combine 在接口中 RouteMatcher
      参数:
      pattern1 - the first pattern
      pattern2 - the second pattern
      返回:
      the combination of the two patterns
    • match

      public boolean match(String pattern, RouteMatcher.Route route)
      从接口复制的说明: RouteMatcher
      Match the given route against the given pattern.
      指定者:
      match 在接口中 RouteMatcher
      参数:
      pattern - the pattern to try to match
      route - the route to test against
      返回:
      true if there is a match, false otherwise
    • matchAndExtract

      @Nullable public Map<String,String> matchAndExtract(String pattern, RouteMatcher.Route route)
      从接口复制的说明: RouteMatcher
      Match the pattern to the route and extract template variables.
      指定者:
      matchAndExtract 在接口中 RouteMatcher
      参数:
      pattern - the pattern, possibly containing templates variables
      route - the route to extract template variables from
      返回:
      a map with template variables and values
    • getPatternComparator

      public Comparator<String> getPatternComparator(RouteMatcher.Route route)
      从接口复制的说明: RouteMatcher
      Given a route, return a Comparator suitable for sorting patterns in order of explicitness for that route, so that more specific patterns come before more generic ones.
      指定者:
      getPatternComparator 在接口中 RouteMatcher
      参数:
      route - the full path to use for comparison
      返回:
      a comparator capable of sorting patterns in order of explicitness