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
- Greedy
- Spring Boot
- springdatajpa
- QueryDSL
- spring
- AOP
- 인프런
- Thymeleaf
- 자바
- 알고리즘
- Proxy
- 김영한
- JPQL
- db
- jpa
- 백준
- java
- SpringBoot
- Servlet
- Android
- pointcut
- 스프링 핵심 기능
- kotlin
- 스프링
- http
- 그리디
- transaction
- JDBC
- 스프링 핵심 원리
- Exception
Archives
- Today
- Total
개발자되기 프로젝트
[스프링AOP 포인트컷] bean 본문
1. bean
- 스프링 전용 포인트컷 지시자, 빈의 이름으로 지정한다
- 스프링 빈의 이름으로 AOP 적용 여부를 지정한다.
- bean(orderService) || bean(*Repository)
- * 과 같은 패턴을 사용할 수 있다.
2. Test
@Slf4j
@Service
public class OrderService {
private final OrderRepository orderRepository;
public OrderService(OrderRepository orderRepository) {
this.orderRepository = orderRepository;
}
public void orderItem(String itemId) {
log.info("[orderService] 실행");
orderRepository.save(itemId);
}
}
@Slf4j
@Import(BeanTest.BeanAspect.class)
@SpringBootTest
public class BeanTest {
@Autowired
OrderService orderService;
@Test
void success(){
log.info("memberService Proxy={}", orderService.getClass());
orderService.orderItem("itemA");
}
@Aspect
static class BeanAspect{
@Around("bean(orderService) || bean(*Repository)")
public Object doLog(ProceedingJoinPoint joinPoint) throws Throwable {
log.info("[bean] {}", joinPoint.getSignature());
return joinPoint.proceed();
}
}
}
[bean] void hello.aop.order.OrderService.orderItem(String)
[orderService] 실행
[bean] String hello.aop.order.OrderRepository.save(String)
[orderRepository] 실행
3. GitHub: 220107 bean
'인프런 > [인프런] 스프링 핵심 원리 - 고급' 카테고리의 다른 글
[스프링AOP 포인트컷] this, target (0) | 2022.01.08 |
---|---|
[스프링AOP 포인트컷] 매개변수 전달 (0) | 2022.01.07 |
[스프링AOP 포인트컷] @annotation, @args (0) | 2022.01.07 |
[스프링AOP 포인트컷] @target, @within (0) | 2022.01.07 |
[스프링AOP 포인트컷] args (0) | 2022.01.07 |
Comments