/*HttpMethod*/
Annotation[] annos = targetMethod.getAnnotations();
ArrayList<String> allHttpMethod = new ArrayList<String>();
if (annos != null) {
for (Annotation anno : annos) {
HttpMethod httpMethodAnno = anno.annotationType().getAnnotation(HttpMethod.class);
if (httpMethodAnno != null) {
String bindMethod = httpMethodAnno.value();
if (StringUtils.isBlank(bindMethod) == false)
allHttpMethod.add(bindMethod);
}
}
}