1 2 3 4 5 6 7 8 9 10
//"@Before twice on one method" import org.aspectj.lang.annotation.*; aspect A{ @Before("call(* *.*(..))") @Before("call(* *.*(..))") public void someCall(){ } }