From 76d5a7a6221f63b5fc04f1c465862622cc2b5963 Mon Sep 17 00:00:00 2001 From: linlei Date: Tue, 23 Apr 2024 17:01:28 +0800 Subject: [PATCH] =?UTF-8?q?IntroductionInterceptor=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../spring-aop-advice-introductionInterceptor/README.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/spring-aop/spring-aop-advice-introductionInterceptor/README.md b/spring-aop/spring-aop-advice-introductionInterceptor/README.md index 6bae4b4..ca5e27f 100644 --- a/spring-aop/spring-aop-advice-introductionInterceptor/README.md +++ b/spring-aop/spring-aop-advice-introductionInterceptor/README.md @@ -21,6 +21,7 @@ ### 三、主要功能 1. **引介新的接口或类** + + 通过实现 `introduce()` 方法,在目标对象的方法调用之前,向目标对象引介新的接口或类,从而使目标对象具有额外的功能或属性。 ### 四、接口源码 @@ -130,11 +131,7 @@ public class MyService { } ``` -### 七、源码分析 - -暂无 - -### 八、常见问题 +### 七、常见问题 1. **引介的作用和优势是什么?**