Supports direct matches, e.g. a registered "/test" matches "/test", and various Ant-style pattern matches, e.g. a registered "/t*" pattern matches both "/test" and "/team", "/test/*" matches all paths in the "/test" directory, "/test/**" matches all paths below "/test". For details, see the {@link org.springframework.util.AntPathMatcher AntPathMatcher} javadoc.
Will search all path patterns to find the most exact match for the current request path. The most exact match is defined as the longest path pattern that matches the current request path. @author Juergen Hoeller @since 16.04.2003 @see #setAlwaysUseFullPath @see #setUrlDecode @see org.springframework.util.AntPathMatcher
|
|