1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-16 18:10:13 +08:00

Update proxy.md

This commit is contained in:
guide 2022-10-04 16:06:10 +08:00
parent eb98cd286f
commit a4e9353877

View File

@ -277,7 +277,7 @@ extends Callback{
```
1. **obj** : 动态生成的代理对象
1. **obj** : 被代理的对象(需要增强的对象)
2. **method** : 被拦截的方法(需要增强的方法)
3. **args** : 方法入参
4. **proxy** : 用于调用原始方法
@ -330,7 +330,7 @@ public class DebugMethodInterceptor implements MethodInterceptor {
/**
* @param o 代理对象(增强的对象)
* @param o 代理对象(需要增强的对象)
* @param method 被拦截的方法(需要增强的方法)
* @param args 方法入参
* @param methodProxy 用于调用原始方法