@HLColumn(commont="1223")
public Long getJieshouId() {
//执行这个方法时候,如何在此获取方法上的注解
return jieshouId;
}
------解决思路----------------------
@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]