|
@@ -84,7 +84,7 @@ public class Mapping {
|
|
|
RequestMapping requestMapping = AnnotatedElementUtils.findMergedAnnotation(method, RequestMapping.class);
|
|
|
if (requestMapping != null) {
|
|
|
String[] paths = Stream.of(requestMapping.value()).map(value -> PathUtils.replaceSlash(base + value)).toArray(String[]::new);
|
|
|
- this.register(RequestMappingInfo.paths(paths).build(), target, method);
|
|
|
+ this.register(paths(paths).build(), target, method);
|
|
|
}
|
|
|
}
|
|
|
return this;
|