从ProceedingJoinPoint获取java.lang.reflect.Method?

时间:2011-04-19 09:39:04

标签: spring java-ee aop aspectj spring-aop

问题很简单:有没有办法从apsectj ProceedingJoinPoint获取Method对象?

目前我在做

Class[] parameterTypes = new Class[joinPoint.getArgs().length];
Object[] args = joinPoint.getArgs();
for(int i=0; i<args.length; i++) {
    if(args[i] != null) {
        parameterTypes[i] = args[i].getClass();
    }
    else {
        parameterTypes[i] = null;
    }
}

String methodName = joinPoint.getSignature().getName();
Method method = joinPoint.getSignature()
    .getDeclaringType().getMethod(methodName, parameterTypes);

但我不认为这是要走的路......

2 个答案:

答案 0 :(得分:80)

你的方法没有错,但有一个更好的方法。你必须转向MethodSignature

MethodSignature signature = (MethodSignature) joinPoint.getSignature();
Method method = signature.getMethod();

答案 1 :(得分:42)

您应该小心,因为Method method = signature.getMethod()将返回接口的方法,您应该添加它以确保获取实现类的方法:

    if (method.getDeclaringClass().isInterface()) {
        try {
            method= jointPoint.getTarget().getClass().getDeclaredMethod(jointPoint.getSignature().getName(),
                    method.getParameterTypes());
        } catch (final SecurityException exception) {
            //...
        } catch (final NoSuchMethodException exception) {
            //...                
        }
    }

(catch中的代码是自愿为空的,您最好添加代码来管理异常)

如果您想要访问方法或参数注释(如果这个不在界面中)

,那么您将拥有该实现。