0

我想获取当前方法的所有注释,因为我需要方法实例,以便我可以从方法中获取注释

我能够获取当前方法名称,但我需要方法或方法实例的完全限定名称。

我也对其他面向对象的解决方案感兴趣,例如回调。

4

1 回答 1

2

下面的代码应该适合你:

    StackTraceElement[] stackTrace = Thread.currentThread().getStackTrace();

    // The 2nd element of the array is the current method
    String className = stackTrace[1].getClassName();
    Class clazz = Class.forName(stackTrace[1].getClassName());

    String methodName = stackTrace[1].getClassName()+"."+stackTrace[1].getMethodName();
    String simpleMethodName = stackTrace[1].getMethodName();

    // This will work only when there are no parameters for the method
    Method m = clazz.getDeclaredMethod(simpleMethodName, null);

    // Fetch the annotations 
    Annotation[] annotations = m.getDeclaredAnnotations();
于 2013-10-18T13:45:23.723 回答