zoukankan      html  css  js  c++  java
  • An overview of the Spring MVC request flow

    The Spring MVC request flow in short:

    1. When we enter a URL in the browser, the request comes to the dispatcher servlet. The dispatcher servlet then acts as a centralized entry point to the web application.
    2. The dispatcher servlet determines a suitable controller that is capable of handling the request and dispatching this request to the controller.
    3. The controller method updates objects in the model and returns the logical view name and updated model to the dispatcher servlet.
    4. The dispatcher servlet consults with the view resolver to determine which view to render and passes the model data to that view.
    5. The view furnishes the dynamic values in the web page using the model data, renders the final web page, and returns this web page to the dispatcher servlet.
    6. At the end, the dispatcher servlet returns the final, rendered page as a response to the browser.
  • 相关阅读:
    LCA最近公共祖先Tarjan(离线)
    51nod 1135 原根
    51nod 1134最长递增子序列
    51nod 1130 斯特林公式
    51nod 1186 Miller-Rabin素数测试
    51Nod 1257 背包问题 V3
    另类求组合数
    Gym
    msp430项目编程45
    msp430项目编程44
  • 原文地址:https://www.cnblogs.com/IcanFixIt/p/4259086.html
Copyright © 2011-2022 走看看