-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Closed
Labels
area/gateway-flow-controlIssues or PRs related to API gateway flow controlIssues or PRs related to API gateway flow controlgood first issueGood for newcomersGood for newcomerskind/enhancementCategory issues or prs related to enhancement.Category issues or prs related to enhancement.
Milestone
Description
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;
}Metadata
Metadata
Assignees
Labels
area/gateway-flow-controlIssues or PRs related to API gateway flow controlIssues or PRs related to API gateway flow controlgood first issueGood for newcomersGood for newcomerskind/enhancementCategory issues or prs related to enhancement.Category issues or prs related to enhancement.