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
- JPQL
- http
- jpa
- Spring Boot
- springdatajpa
- 자바
- 인프런
- AOP
- db
- pointcut
- java
- 스프링 핵심 기능
- 백준
- 그리디
- transaction
- Exception
- Android
- kotlin
- 김영한
- 알고리즘
- 스프링 핵심 원리
- Proxy
- 스프링
- QueryDSL
- spring
- Thymeleaf
- Servlet
- JDBC
- Greedy
- SpringBoot
Archives
- Today
- Total
목록상속 (1)
개발자되기 프로젝트
[스프링AOP 포인트컷] execution - 2
1. 타입 매칭 - 부모 타입 허용 @Test void typeExactMatch(){ pointcut.setExpression("execution(* hello.aop.member.MemberServiceImpl.*(..))"); assertThat(pointcut.matches(helloMethod, MemberServiceImpl.class)).isTrue(); } @Test void typeMatchSuperType(){ pointcut.setExpression("execution(* hello.aop.member.MemberService.*(..))"); assertThat(pointcut.matches(helloMethod, MemberServiceImpl.class)).isTrue(); } ..
인프런/[인프런] 스프링 핵심 원리 - 고급
2022. 1. 6. 22:44