Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Thymeleaf
- 스프링 핵심 기능
- JPQL
- transaction
- Proxy
- java
- Spring Boot
- JDBC
- spring
- 백준
- pointcut
- 스프링 핵심 원리
- Exception
- jpa
- AOP
- kotlin
- Android
- springdatajpa
- 인프런
- 김영한
- SpringBoot
- 자바
- http
- Greedy
- 그리디
- db
- 알고리즘
- QueryDSL
- Servlet
- 스프링
Archives
- Today
- Total
개발자되기 프로젝트
[스프링AOP] 예제 프로젝트 본문
1. Test코드
import hello.aop.order.OrderRepository;
import hello.aop.order.OrderService;
import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.Test;
import org.springframework.aop.support.AopUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import static org.assertj.core.api.Assertions.*;
@Slf4j
@SpringBootTest
public class AopTest {
@Autowired
OrderService orderService;
@Autowired
OrderRepository orderRepository;
@Test
void aopInfo(){
log.info("isAopProxy, orderService={}", AopUtils.isAopProxy(orderService));
log.info("isAopProxy, orderRepository={}", AopUtils.isAopProxy(orderRepository));
}
@Test
void success(){
orderService.orderItem("itemA");
}
@Test
void exception(){
assertThatThrownBy(() -> orderService.orderItem("ex")).isInstanceOf(IllegalStateException.class);
}
}
- appInfo()
- AopUtils.isAopProxy(...) 을 통해서 AOP 프록시가 적용 되었는지 확인할 수 있다.
- 현재 AOP 관련 코드를 작성하지 않았으므로 프록시가 적용되지 않고, 결과도 false 를 반환해야 정상이다.
- success()
2022-01-05 15:03:04.336 INFO 7928 --- [ main] hello.aop.order.OrderService : [orderService] 실행
2022-01-05 15:03:04.337 INFO 7928 --- [ main] hello.aop.order.OrderRepository : [orderRepository] 실행
2. GitHub : 220105 SpringAOP
'인프런 > [인프런] 스프링 핵심 원리 - 고급' 카테고리의 다른 글
[스프링AOP] 스프링AOP 구현 - pointcut 분리 (0) | 2022.01.05 |
---|---|
[스프링AOP] 스프링AOP 구현 (0) | 2022.01.05 |
[스프링AOP] 프로젝트 생성 (0) | 2022.01.05 |
[AOP] AOP 용어 정리 (0) | 2022.01.05 |
[AOP] AOP 적용 방식 (0) | 2022.01.05 |
Comments