| 接口 | 说明 |
|---|---|
| DynamicClass |
动态代理的标记接口,可以简单的通过 bean2 instanceof DynamicClass 形式来判断对象是否是一个 Aop 类。
|
| DynamicObject |
动态对象
|
| DynamicProperty |
委托属性,aop 组建提供一种新型的属性形态,传统的bean的get/set方法是针对一个私有字段。
|
| MethodInterceptor |
Intercepts calls on an interface on its way to the target.
|
| MethodInvocation |
Description of an invocation to a method, given to an interceptor
upon method-call.
|
| ProxyFactory<T> |
| 类 | 说明 |
|---|---|
| AsmTools |
生成字节码时候使用的工具类。
|
| BasicObject | |
| DynamicConfig |
策略执行顺序:1. superClass、2. interceptorMethods、3. dynamicPropertyMap、4. implementMap、
|
| InvokerDynamicProperty | |
| InvokerImplementInvocation | |
| InvokerMethodInvocation | |
| Matchers | |
| Proxy |
Proxy 代理类,可以代替 java Proxy代理类,并提供更强大的支持。
|
| SimpleDynamicProperty |
PropertyDelegate 默认简单实现
|
| 枚举 | 说明 |
|---|---|
| ReadWriteType |
属性的读写特性
|
| 注释类型 | 说明 |
|---|---|
| Aop |
标记在类或方法上,为类或方法指定拦截器。
|
| AopSet |
标记在类或方法上,为类或方法指定拦截器。
|
[Web Site]