发布网友 发布时间:2022-04-25 12:34
共1个回答
热心网友 时间:2024-05-19 12:00
@Action
public void test() throws NoSuchMethodException, SecurityException{
StackTraceElement[] stack = new Throwable().getStackTrace();
Method method = this.getClass().getMethod(stack[0].getMethodName());
for(Annotation an : method.getAnnotations()){
System.out.println(an);
}
}
也可以写个公共方法来获取,stack[0]这里要改成stack[1]