String resolvedMethodName = null;
for (Method handlerMethod : this.handlerMethods) {
RequestMappingInfo mappingInfo = new RequestMappingInfo();
RequestMapping mapping = AnnotationUtils.findAnnotation(handlerMethod, RequestMapping.class);
mappingInfo.paths = mapping.value();
mappingInfo.methods = mapping.method();
mappingInfo.params = mapping.params();
boolean match = false;
if (mappingInfo.paths.length > 0) {
for (String mappedPath : mappingInfo.paths) {
if (isPathMatch(mappedPath, lookupPath)) {