Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] Advising all calls to all methods within a certain package

Hello. I would like to advise all calls to all methods within the
java.io package and subpackages. I have the following pointcut:

call(* java.io..*.*(..))

It works, however, it also advised calls to methods within java.lang as
well. Anyway to fix this? Thanks!


Back to the top