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
- db
- 백준
- 그리디
- Greedy
- 스프링
- java
- JPQL
- QueryDSL
- 김영한
- 스프링 핵심 기능
- SpringBoot
- Servlet
- 인프런
- jpa
- Android
- Spring Boot
- spring
- 자바
- Exception
- transaction
- springdatajpa
- Proxy
- Thymeleaf
- AOP
- 스프링 핵심 원리
- 알고리즘
- kotlin
- pointcut
- JDBC
- http
Archives
- Today
- Total
목록MethodInvocation (1)
개발자되기 프로젝트
[프록시 팩토리] 프록시 팩토리 - 예제1
1. Advice Advice 는 프록시에 적용하는 부가 기능 로직이다. 이것은 JDK 동적 프록시가 제공하는 InvocationHandler 와 CGLIB가 제공하는 MethodInterceptor 의 개념과 유사. 둘을 개념적으로 추상화 한 것이다. 프록시 팩토리를 사용하면 둘 대신에 Advice 를 사용하면 된다. Advice 를 만드는 방법은 여러가지가 있지만, 기본적인 방법은 다음 인터페이스를 구현하면 된다. Methodinterceptor - 스프링이 제공하는 코드 -> Advice는??? : Interceptor가 Advice를 상속함 ㅋㅋㅋ package org.aopalliance.intercept; public interface MethodInterceptor extends Interc..
인프런/[인프런] 스프링 핵심 원리 - 고급
2021. 12. 30. 23:50