浏览代码

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

刘羽铖 6 年之前
父节点
当前提交
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实现的动态代理切面
  * Cglib实现的动态代理切面
  * 
  * 
  * @author looly
  * @author looly
+ * @author ted.L
  *
  *
  */
  */
 public class CglibInterceptor implements MethodInterceptor, Serializable {
 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实现的动态代理切面
  * JDK实现的动态代理切面
  * 
  * 
  * @author Looly
  * @author Looly
+ * @author ted.L
  *
  *
  */
  */
 public class JdkInterceptor implements InvocationHandler, Serializable{
 public class JdkInterceptor implements InvocationHandler, Serializable{