JBoss.org Community Documentation
Pointcuts can be composed into boolean expressions.
!
logical not.
AND
logical and.
OR
logical or.
Here's some examples.
call(void Foo->someMethod()) AND withincode(void Bar->caller()) execution(* *->@SomeAnnotation(..)) OR field(* *->@SomeAnnotation)