Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] Around Advice Generic

Hi,

I try to use around advice for a general use. I would like to use around for all the methods of a class which one does not know in advance the functions. For example, for a class A has which has 6 methods and a file aspectJ which defines a pointcut A.* for all the methods of A, is it possible to define a generic around for example:

pointcut methods (): execution (public A.* (...));

Object around (): methods () {
….
return proceed ();
}

knowing that the methods of A have different signatures ! I tested the code written above and it does not function, it never passes in the around  method whereas with a before or an after for the same pointcut, it works very well. If somebody already had to deal with this problem, I am waiting your answers!

Cordially

Antoine


Avec Windows Live Messenger restez en contact avec tous vos amis ! Téléchargez Messenger, c'est gratuit !

Back to the top