SpringMVC源码解析-HandlerExecutionChain
最终会调用HandlerInterceptor的preHandle调用所有的HandlerInterceptor拦截器并调用其preHandler方法。applyPostHandle获取所有的拦截器并调用其postHandle方法。triggerAfterCompletion触发afterCompletion执回调的映射HandlerInterceptors。 只会调用afterCompletio
·
最终会调用HandlerInterceptor的
preHandle
调用所有的HandlerInterceptor拦截器并调用其preHandler方法。
applyPostHandle
获取所有的拦截器并调用其postHandle方法。
triggerAfterCompletion
触发afterCompletion执回调的映射HandlerInterceptors。 只会调用afterCompletion执行对于其preHandle调用已成功完成并返回true的拦截器
void triggerAfterCompletion(HttpServletRequest request, HttpServletResponse response, Exception ex)
throws Exception {
HandlerInterceptor[] interceptors = getInterceptors();
if (!ObjectUtils.isEmpty(interceptors)) {
for (int i = this.interceptorIndex; i >= 0; i--) {
HandlerInterceptor interceptor = interceptors[i];
try {
interceptor.afterCompletion(request, response, this.handler, ex);
}
catch (Throwable ex2) {
logger.error("HandlerInterceptor.afterCompletion threw exception", ex2);
}
}
}
}
HandlerInterceptor拦截器的最终调用实现是在DispatcherServlet的doDispatch方法中
因此,SpringMVC提供了HandlerExecutionChain来帮助我们执行所有配置的HandlerInterceptor拦截器,并分别调用HandlerInterceptor所提供的方法。
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献20条内容
所有评论(0)