Browse Source

1、切面after切点,将目标方法执行返回值,开放给切点

刘羽铖 6 years ago
parent
commit
84875f0ff9

+ 1 - 0
hutool-aop/src/main/java/cn/hutool/aop/interceptor/CglibInterceptor.java

@@ -13,6 +13,7 @@ import net.sf.cglib.proxy.MethodProxy;
  * Cglib实现的动态代理切面
  * 
  * @author looly
+ * @author ted.L
  *
  */
 public class CglibInterceptor implements MethodInterceptor, Serializable {

+ 1 - 0
hutool-aop/src/main/java/cn/hutool/aop/interceptor/JdkInterceptor.java

@@ -13,6 +13,7 @@ import cn.hutool.core.util.ReflectUtil;
  * JDK实现的动态代理切面
  * 
  * @author Looly
+ * @author ted.L
  *
  */
 public class JdkInterceptor implements InvocationHandler, Serializable{