@@ -6,6 +6,7 @@ import java.lang.reflect.Method;
* 切面接口
*
* @author looly
+ * @author ted.L
* @since 4.18
*/
public interface Aspect{
@@ -52,7 +52,7 @@ public class CglibInterceptor implements MethodInterceptor, Serializable {
}
- if (aspect.after(target, method, args)) {
+ if (aspect.after(target, method, args, result)) {
return result;
return null;
@@ -53,7 +53,7 @@ public class JdkInterceptor implements InvocationHandler, Serializable{