Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] Weaving inherited methods

Hello Ramnivas, thanks for your reply.

I tried your suggestion, but that didn't work.
The actual implementation of the handleInternalRequest(..) is in a superclass. And even if I try it with the superclass, the aspect is not being applied.
The funny thing is that eclipse is not saying that the pointcut that defines the _expression_ doesn't match anything. It only says that the before() and after() pointcuts are not being applied.

Thanks again,

Renato

2008/2/11, Ramnivas Laddad <ramnivas@xxxxxxxxxxxxxxx>:
Try the following pointcut:

call(* *(..)) && withincode(* SimpleFormController+.handleInternalRequest(..))

-Ramnivas


Back to the top