for (Method interfaceMethod : methods) {
Method method = BridgeMethodResolver.findBridgedMethod(interfaceMethod);
Class<?> responseClazz = method.getReturnType();
RequestMapping requestMapping = AnnotationUtils.findAnnotation(method, RequestMapping.class);
RestRequestResource restRequestResource = AnnotationUtils.findAnnotation(method, RestRequestResource.class);
boolean export = (restRequestResource != null ? restRequestResource.export() : true);
// if the method declaring class is in the parent, get the return type from the service or converter (because of erasure)
if (!marshallingServiceClass.equals(method.getDeclaringClass())) {
String restRequestResourceMethodName = (restRequestResource != null ? restRequestResource.methodName() : null);
String methodName = (StringUtils.hasText(restRequestResourceMethodName) ? restRequestResourceMethodName : method.getName());
Class<?>[] paramTypes = method.getParameterTypes();
try {
Method serviceMethod = ReflectionUtils.findMethod(serviceClass, methodName, paramTypes);
responseClazz = serviceMethod.getReturnType();
} catch(IllegalStateException e) {
}
}
if (export) {
boolean relative = (restRequestResource != null ? restRequestResource.relative() : true);
// just get first param if more than one
StringBuilder uri = new StringBuilder();
if (relative) {
for (String pattern : requestMapping.value()) {
// add REST resource path prefix to URI,
// if relative path is just '/' add an empty string
uri.append(restResource.path());
uri.append((!"/".equals(pattern) ? pattern : ""));
break;
}
} else {
uri.append(requestMapping.value()[0]);
}
String[] params = requestMapping.params();
if (params != null && params.length > 0) {
uri.append("?");
for (int i = 0; i < params.length; i++) {
String param = params[i];
uri.append(param);
uri.append("={");
uri.append(param);
uri.append("}");
if (i < (params.length - 1)) {
uri.append("&");
}
}
}
RequestMethod requestMethod = requestMapping.method()[0];
if (RequestMethod.POST.equals(requestMethod) || RequestMethod.PUT.equals(requestMethod)
|| RequestMethod.DELETE.equals(requestMethod)) {
responseClazz = restResource.responseClass();
}