Получить цель в MethodInterceptor - PullRequest
2 голосов
/ 14 мая 2011

Как я могу получить целевой объект в моем перехватчике?

   bindInterceptor(subclassesOf(A.class), any(), new MethodInterceptor() {
        @Override
        public Object invoke(MethodInvocation methodInvocation) throws Throwable {
            A a = getTarget();    //how?
            return methodInvocation.proceed();
        }
    });

UPD На самом деле, есть решение на основе отражения, но есть надежда, что есть другие решения ..

private static Object getTarget(MethodInvocation methodInvocation) throws NoSuchFieldException, IllegalAccessException {
    return getFieldValue(methodInvocation, "proxy");
}

private static Object getFieldValue(Object obj, String field) throws NoSuchFieldException, IllegalAccessException {
    Field f = obj.getClass().getDeclaredField(field);
    f.setAccessible(true);
    return f.get(obj);
}

1 Ответ

2 голосов
/ 14 мая 2011

Разве это не просто methodInvocation.getThis()?

...