美文网首页
Struts2的加载流程

Struts2的加载流程

作者: 繁天涯 | 来源:发表于2018-12-25 11:30 被阅读0次

    1.tomcat启动,加载应用的web.xml。(到web.xml)
    2.实例化并初始化过滤器。(到StrutsPrepareAndExecuteFilter)
    3.加载struts.xml配置文件。(到struts.xml)
    4.客户端发送请求:xxx.action。(到tomcat)
    5.请求到达过滤器。(到StrutsPrepareAndExecuteFilter)
    6.截取请求动作名称xxx,并从struts.xml中找到匹配的类,方法等。(到StrutsPrepareAndExecuteFilter)
    7.找到后实例化动作类xxx。(从StrutsPrepareAndExecuteFilter到xxxAction)
    8.调用对应的动作方法,方法有返回值。(从StrutsPrepareAndExecuteFilter到xxxAction)
    9.根据返回值,找到取值对应得结果视图。(从StrutsPrepareAndExecuteFilter到xxxAction)
    10.找到路径jsp页面。
    11.响应浏览器,展示页面。

    相关文章

      网友评论

          本文标题:Struts2的加载流程

          本文链接:https://www.haomeiwen.com/subject/egnxlqtx.html