SpringMVC请求流程

Spring结构图

SpringMVC请求流程图

 

 

SpringMVC请求流程图语述:

request--->DispatcherServler(中央调度器/前端控制器)---> HandlerMapping(处理器映射器)--->返回一个执行链--->将执行链转交给HandlerAdaptor(处理器适配器)--->调度Handler(处理器)--->ModelAndView----->先将结果交给HandlerAdaptor,然后再由HandlerAdaptor转交给 DispatcherServler---->DispatcherServler调度ViewResolver(视图解析器)---->交给DispatcherServler--->寻找View--->View做出响应(response)

原文地址:https://www.cnblogs.com/413xiaol/p/6810312.html