类 AfterReturningAdviceInterceptor
java.lang.Object
infra.aop.framework.adapter.AfterReturningAdviceInterceptor
- 所有已实现的接口:
AfterAdvice,Serializable,Advice,Interceptor,MethodInterceptor
public class AfterReturningAdviceInterceptor
extends Object
implements MethodInterceptor, AfterAdvice, Serializable
Interceptor to wrap an
AfterReturningAdvice.
Used internally by the AOP framework; application developers should not need
to use this class directly.- 作者:
- Rod Johnson
- 另请参阅:
-
字段概要
字段 -
构造器概要
构造器构造器说明Create a new AfterReturningAdviceInterceptor for the given advice. -
方法概要
修饰符和类型方法说明Implement this method to perform extra treatments before and after the invocation.
-
字段详细资料
-
advice
-
-
构造器详细资料
-
AfterReturningAdviceInterceptor
Create a new AfterReturningAdviceInterceptor for the given advice.- 参数:
advice- the AfterReturningAdvice to wrap
-
-
方法详细资料
-
invoke
从接口复制的说明:MethodInterceptorImplement this method to perform extra treatments before and after the invocation. Polite implementations would certainly like to invokeJoinpoint.proceed().- 指定者:
invoke在接口中MethodInterceptor- 参数:
mi- 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.
-