程序包 | 说明 |
---|---|
org.nutz.aop |
提供对 Java 类的拦截能力
通过 MeothodInterceptor 接口,对于 Java 类 public | protected 函数的提供了拦截能力。
|
org.nutz.aop.interceptor |
内置的Aop拦截器实现类
|
org.nutz.aop.interceptor.async |
限定符和类型 | 方法和说明 |
---|---|
InterceptorChain |
InterceptorChain.doChain()
继续执行下一个拦截器,如果已经没有剩下的拦截器,则执行原方法
|
限定符和类型 | 方法和说明 |
---|---|
void |
MethodInterceptor.filter(InterceptorChain chain) |
限定符和类型 | 方法和说明 |
---|---|
void |
TransactionInterceptor.filter(InterceptorChain chain) |
void |
LoggingMethodInterceptor.filter(InterceptorChain chain) |
void |
AbstractMethodInterceptor.filter(InterceptorChain chain)
拦截方法调用, 将拦截器的行为, 分成: 之前,之后,抛异常,抛错误 -- 4种拦截点
|
限定符和类型 | 方法和说明 |
---|---|
void |
AsyncMethodInterceptor.filter(InterceptorChain chain) |
Copyright © 2017. All rights reserved.