Spring AOP(Aspect-Oriented Programming)를 활용하면 애플리케이션 전반에 걸친 공통적인 로직을 효율적으로 적용할 수 있습니다. 그중 하나가 로깅 기능입니다. Spring AOP 기반 로깅 설정의 원리를 살펴보겠습니다.전체 코드@Component@Aspect@Slf4jpublic class LoggingAspect { @Around("execution(* com.example..controller.*Controller.*(..)) " + "or execution(* com.example..service.*Service.*(..)) " + "or execution(* com.example..repository.*Repository.*(..