[스프링/Spring] ProceedingJoinPoint의 메서드
Spring ProceedingJoinPoint의 메서드 //Aspect 역할을 할 클래스를 선언하기 위해 어노테이션 선언 @Aspect public class ExeTimeAspect { //PointCut의 속성에 핵심코드의 어느 부분까지 공통 기능을 사용하겟다고 명시 @Pointcut("expression=within(com.ktko.test.*)") private void publicTarget() { } //around가 적용될 포인트 컷을 명시 : publicTarget() @Around("publicTarget()") public Object measure(ProceedingJoinPoint joinPoint) throws Throwable { long start = System.nanoTi..