From 7c297bf4096fc88a2e94ac8c17df837ff6eba13c Mon Sep 17 00:00:00 2001 From: linlei Date: Sat, 13 Apr 2024 17:27:46 +0800 Subject: [PATCH] =?UTF-8?q?AopProxyFactory=E6=BA=90=E7=A0=81=E5=88=86?= =?UTF-8?q?=E6=9E=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- spring-aop/spring-aop-aopProxyFactory/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-aop/spring-aop-aopProxyFactory/README.md b/spring-aop/spring-aop-aopProxyFactory/README.md index d26c8de..e82af19 100644 --- a/spring-aop/spring-aop-aopProxyFactory/README.md +++ b/spring-aop/spring-aop-aopProxyFactory/README.md @@ -27,7 +27,7 @@ + 根据目标类的类型和配置信息,确定是否使用 JDK 动态代理或 CGLIB 代理。这个决定通常是基于配置中的一些条件,例如是否需要代理接口或者是否允许使用 CGLIB 代理。 3. **支持灵活配置** -+ 通过实现该接口,可以灵活地定制 AOP 代理的生成方式,以满足不同场景下的需求。 + + 通过实现该接口,可以灵活地定制 AOP 代理的生成方式,以满足不同场景下的需求。 ### 四、接口源码