I am trying to define a pointcut, that would catch every method that is annotated with (i.e.) @CatchThis. This is my own annotation.

Moreover, I'd like to have access to the first argument of the method, which will be of Long type. There maybe other arguments too, but I dont care about them.

If anybody has a clue, please help me ;-)

EDIT This is what I have right now. What I don't know is how to pass the first parameter of the method annotated with @CatchThis

@Aspect public class MyAspect{

@Pointcut(value="execution(public * *(..))")
public void anyPublicMethod() {
}

@Around("anyPublicMethod() && @annotation(catchThis)")
public Object logAction(ProceedingJoinPoint pjp, CatchThis catchThis) throws Throwable {

    return pjp.proceed();
}

}

link|improve this question

What about using the Spring annotation framework ? – Vash Oct 19 '11 at 7:27
I've updated my post. – elmes Oct 19 '11 at 7:31
feedback

1 Answer

up vote 2 down vote accepted

Something like this should do:

@Aspect
public class MyAspect{

    @Pointcut(value="execution(public * *(..))")
    public void anyPublicMethod() {
    }

    @Around("anyPublicMethod() && @annotation(catchThis) && args(.., Long ,..)")
    public Object logAction(
        ProceedingJoinPoint pjp, CatchThis catchThis, Long long)
        throws Throwable {

        return pjp.proceed();
    }
}
link|improve this answer
I've updated my post. Could you do the same with your snippet? I'd be very grateful. – elmes Oct 19 '11 at 7:32
@elmes OK, updated – Sean Patrick Floyd Oct 19 '11 at 7:36
Thanks. is it possible, to catch methods which have ONE Long argument that is not necessarily the first argument - it can be first, second.. or last? – elmes Oct 19 '11 at 7:46
@elmes updated again, now it should work – Sean Patrick Floyd Oct 19 '11 at 7:56
Damn, It's not working... Could I send you my code? – elmes Oct 19 '11 at 9:27
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.