Issue Description: context.getRequest().getServletPath() always empty
type: bug
Class :PrefixRoutePathMatcher.class
Method: test
Content:
@Override
public boolean test(RequestContext context) {
String path = context.getRequest().getServletPath();
if (canMatch) {
return pathMatcher.match(pattern, path);
}
return false;
}
How to reproduce it (as minimally and precisely as possible)
@Override
public boolean test(RequestContext context) {
String path = context.getRequest().getRequestURI();
if (canMatch) {
return pathMatcher.match(pattern, path);
}
return false;
}
Issue Description: context.getRequest().getServletPath() always empty
type: bug
Class :PrefixRoutePathMatcher.class
Method: test
Content:
How to reproduce it (as minimally and precisely as possible)