SpringMVC源码解析(二) - 怎样找到处理Http请求的Method
1 获取 HandlerExecutionChainDispatchServlet 的 doDispatch 方法中调用了 getHandler 方法获取了执行请求的 HandlerExecutionChain。HandlerExecutionChain 包含了拦截器已经处理该请求的 handler 等信息。
来看一下 doDispatch 的源码片段
1234567891011121314protected void doDispatch(HttpServletRequest request, HttpServl
...