Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

12345678910111213141516
  1. import org.aspectj.lang.annotation.Aspect;
  2. import org.aspectj.lang.annotation.Before;
  3. class Main {
  4. public static void main(String[] args) {
  5. System.out.println("Main");
  6. }
  7. }
  8. @Aspect
  9. class MainLogger {
  10. @Before("execution(* main(..))")
  11. public void log(JoinPoint thisJoinPoint) {
  12. System.out.println("Before " + thisJoinPoint);
  13. }
  14. }