类 RuntimeMethodInterceptor
java.lang.Object
infra.aop.support.RuntimeMethodInterceptor
- 所有已实现的接口:
Advice,Interceptor,MethodInterceptor
Runtime MethodInterceptor
use runtime MethodMatcher to match interceptor can be executed
- 从以下版本开始:
- 3.0
- 作者:
- TODAY 2021/2/1 19:31
-
字段概要
字段 -
构造器概要
构造器 -
方法概要
修饰符和类型方法说明invoke(MethodInvocation invocation) Implement this method to perform extra treatments before and after the invocation.
-
字段详细资料
-
methodMatcher
-
interceptor
-
-
构造器详细资料
-
RuntimeMethodInterceptor
-
-
方法详细资料
-
invoke
从接口复制的说明:MethodInterceptorImplement this method to perform extra treatments before and after the invocation. Polite implementations would certainly like to invokeJoinpoint.proceed().- 指定者:
invoke在接口中MethodInterceptor- 参数:
invocation- the method invocation joinpoint- 返回:
- the result of the call to
Joinpoint.proceed(), might be intercepted by the interceptor. - 抛出:
Throwable- if the interceptors or the target-object throws an exception.
-