spring中重要的数据结构

HandlerExecutionChain中的数据结构

public class HandlerExecutionChain {


private static final Log logger = LogFactory.getLog(HandlerExecutionChain.class);
private final Object handler;//处理器
private HandlerInterceptor[] interceptors;//拦截器
private List interceptorList;

private int interceptorIndex = -1;

}

你可能感兴趣的:(spring中重要的数据结构)