Spring에서 어떤 프록시를 사용하나요? #144
Unanswered
Chocochip101
asked this question in
Spring
Replies: 1 comment
-
Spring 프레임워크는 CGLIB 프록시를 사용합니다. CGLIB(Code Generation Library)는 클래스 기반의 프록시를 생성하는 라이브러리입니다. CGLIB는 대상 클래스의 서브클래스를 생성하여 상위 클래스에 대한 메서드 호출을 가로채는 방식으로 작동합니다. 이러한 CGLIB는 주로 스프링에서 AOP를 구현하기 위해 사용됩니다. 서비스 객체의 메서드에 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
.
Beta Was this translation helpful? Give feedback.
All reactions