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. **引介的作用和优势是什么?**