Interface ScannedMethodInterceptor
-
- All Known Implementing Classes:
AbstractScannedMethodInterceptor,ApiProcessingInterceptor,LoggingInterceptor,ValidateInterceptor
public interface ScannedMethodInterceptor拦截接口, 被代理类需使用Scanned注解, 推荐继承AbstractScannedMethodInterceptor- Author:
- CofCool
- See Also:
Scanned,AbstractScannedMethodInterceptor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidpostAfter(org.aopalliance.intercept.MethodInvocation invocation, Object returnValue)MethodInvocation 调用之后调用voidpostBefore(org.aopalliance.intercept.MethodInvocation invocation)MethodInvocation 调用之前调用booleansupports(Method method)是否可以处理该 method
-