Spring/스프링 입문 - 코드로 배우는 스프링 부트, 웹 MVC, DB 접근 기술

[ AOP ] AOP 적용

alsruds 2023. 9. 19. 05:12

🙂강의🙂

https://www.inflearn.com/course/%EC%8A%A4%ED%94%84%EB%A7%81-%EC%9E%85%EB%AC%B8-%EC%8A%A4%ED%94%84%EB%A7%81%EB%B6%80%ED%8A%B8

 

[무료] 스프링 입문 - 코드로 배우는 스프링 부트, 웹 MVC, DB 접근 기술 - 인프런 | 강의

스프링 입문자가 예제를 만들어가면서 스프링 웹 애플리케이션 개발 전반을 빠르게 학습할 수 있습니다., 스프링 학습 첫 길잡이! 개발 공부의 길을 잃지 않도록 도와드립니다. 📣 확인해주세

www.inflearn.com

 

  • AOP : Aspect Oriented Programming (관점 지향 프로그래밍)
  • 공통 관심 사항(cross-cutting concern) & 핵심 관심 사항(core concern) 분리하기

 

[ 시간 측정 AOP 등록 ]

  1. MemberService 에 추가했던 시간 측정 코드 삭제하기
  2. src/main/java/hello.hellospring 에 aop 패키지 생성하기
  3. 생성한 패키지에 TimeTraceAop 클래스 생성하기
package hello.hellospring.aop;

import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect; // AOP 사용
import org.springframework.stereotype.Component;

@Aspect
@Component
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");
        }
    }
}

 

  • 테스트 하기 (회원 조회 했을 때)

AOP 로 시간 측정 완료 ~

 

[ 스프링 AOP 동작 방식 ]

AOP 적용 전 의존 관계 AOP 적용 후 의존 관계

가짜 memberService 먼저 호출 (프록시 memberService)
AOP 적용 전 전체 그림 AOP 적용 후 전체 그림

 

해결한 문제

→ 핵심 관심 사항(회원 기능) & 공통 관심 사항(시간 측정 로직) 분리

시간 측정 로직을 별도의 공통 로직으로 생성 (코드 변경 용이)

원하는 적용 대상 선택 가능