You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314
  1. public aspect AroundExecutionAdvice {
  2. pointcut run () :
  3. execution(public void run());
  4. void around () : run () {
  5. System.out.println("> AroundExecutionAdvice.run()");
  6. proceed();
  7. System.out.println("< AroundExecutionAdvice.run()");
  8. }
  9. }