获取RequestMapping注解中的属性
Posted white knight
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取RequestMapping注解中的属性相关的知识,希望对你有一定的参考价值。
参考:https://www.cnblogs.com/2013jiutian/p/7294053.html
@RequestMapping("/value1")
@Controller
public Class A {
@RequestMapping("/value2")
public String method1() {
return "xxx";
}
}
Annotation classAnnotation = A.class.getAnnotation(RequestMapping.class);
if (classAnnotation != null) {
Class clazz = classAnnotation.annotationType();
try {
Method path = clazz.getDeclaredMethod("path");
Method value = clazz.getDeclaredMethod("value");
String[] pathArr = (String[]) path.invoke(classAnnotation);
String[] valueArr = (String[]) value.inivoke(classAnnotation);
} catch (Exception e) {
e.printStackTrace();
}
}
Method method1 = A.class.getMethod("method1");
Annotation method1Annotation = method1.getAnnotation(RequestMapping.class);
...
以上是关于获取RequestMapping注解中的属性的主要内容,如果未能解决你的问题,请参考以下文章
SpringMVC— “@RequestMapping注解及其属性”
SpringMVC— “@RequestMapping注解及其属性”
SpringMVC— “@RequestMapping注解及其属性”