4647484950515253
} Class<?> clazz = request.getClass(); Method method = clazz.getAnnotation(Method.class); HttpMethod httpMethod = method.value(); return httpMethod; }
126127128129130131132133134135136
* * @param request * @return */ private <T> Response<T> dispatchByMethod(Request<T> request) { HttpMethod method = HttpMethodUtil.retrieveMethod(request); String target = getTargetUrl(); WebClient webClient = instantiateWebClient(target);