스프링 입문 - 코드로 배우는 스프링 부트, 웹 MVC, DB 접근 기술 by 김영한
공통 관심 사항(cross-cutting concern)과 핵심 관심 사항(core concern)을 분리하여 메서드 내부에는 핵심 로직을 구현하는 코드만 담겨 있도록 한다.


package hello.hellospring.aop;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.springframework.stereotype.Component;
@Component
@Aspect
public class TimeTraceAop {
   @Around("execution(* hello.hellospring..*(..))")
   public Object execute(ProceedingJoinPoint joinPoint) throws Throwable {
     long start = System.currentTimeMillis();
     System.out.println("START: " + joinPoint.toString());
     try {
       return joinPoint.proceed();
     } finally {
       long finish = System.currentTimeMillis();
       long timeMs = finish - start;
       System.out.println("END: " + joinPoint.toString()+ " " + timeMs + "ms");
     }
   }
}
@Around : 공통 관심 사항을 어디에 적용할 지 타겟팅 해주는 어노테이션이다. 보통 패키지 레벨에 적용한다.


