🙂강의🙂
- AOP : Aspect Oriented Programming (관점 지향 프로그래밍)
- 공통 관심 사항(cross-cutting concern) & 핵심 관심 사항(core concern) 분리하기
[ 시간 측정 AOP 등록 ]
- MemberService 에 추가했던 시간 측정 코드 삭제하기
- src/main/java/hello.hellospring 에 aop 패키지 생성하기
- 생성한 패키지에 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 적용 후 의존 관계 |
가짜 memberService 먼저 호출 (프록시 memberService) |
|
AOP 적용 전 전체 그림 | AOP 적용 후 전체 그림 |
✨ 해결한 문제 ✨
→ 핵심 관심 사항(회원 기능) & 공통 관심 사항(시간 측정 로직) 분리
→ 시간 측정 로직을 별도의 공통 로직으로 생성 (코드 변경 용이)
→ 원하는 적용 대상 선택 가능
'Spring > 스프링 입문 - 코드로 배우는 스프링 부트, 웹 MVC, DB 접근 기술' 카테고리의 다른 글
[ AOP ] AOP 가 필요한 상황 (0) | 2023.09.18 |
---|---|
[ 스프링 DB 접근 기술 ] 스프링 데이터 JPA (0) | 2023.09.17 |
[ 스프링 DB 접근 기술 ] JPA (0) | 2023.09.16 |
[ 스프링 DB 접근 기술 ] 스프링 JdbcTemplate (0) | 2023.09.14 |
[ 스프링 DB 접근 기술 ] 스프링 통합 테스트 (0) | 2023.09.13 |