코드 예시 import org.aspectj.lang.JoinPoint; import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annotation.Around; import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Before; import org.aspectj.lang.annotation.Pointcut; @Aspect public class logAop { // @Pointcut("execution(public void get*(..))"); // @Pointcut("execution(* com.javalec.ex.*.*())"); // @Poin..