关于Interceptor的理解
RealInterceptorChain类中通过Interceptor接口中的intercept()和Chain接口中的proceed()实现递归调用,完成AOP作用。递归出口为next Interceptor 下标溢出,此时返回原数据。
RealInterceptorChain类中通过Interceptor接口中的intercept()和Chain接口中的proceed()实现递归调用,完成AOP作用。递归出口为next Interceptor 下标溢出,此时返回原数据。