zoukankan      html  css  js  c++  java
  • 8、Struts2 运行流程分析

    1、流程分析:

    • Struts2运行流程 | center

    1. 请求发送给 StrutsPrepareAndExecuteFilter
    2. StrutsPrepareAndExecuteFilter 询问 ActionMapper: 该请求是否是一个 Struts2 请求(即是否返回一个非空的 ActionMapping 对象)
    3. 若 ActionMapper 认为该请求是一个 Struts2 请求,则 StrutsPrepareAndExecuteFilter 把请求的处理交给 ActionProxy
    4. ActionProxy 通过 Configuration Manager 询问框架的配置文件,确定需要调用的 Action 类及 Action 方法
    5. ActionProxy 创建一个 ActionInvocation 的实例,并进行初始化
    6. ActionInvocation 实例在调用Action的过程前后,涉及到相关拦截器(Intercepter)的调用。
    7. Action 执行完毕,ActionInvocation 负责根据 struts.xml 中的配置找到对应的返回结果。调用结果的 execute 方法,渲染结果。在渲染的过程中可以使用Struts2 框架中的标签。
    8. 执行各个拦截器 invocation.invoke() 之后的代码
    9. 把结果发送到客户端

    • 时序图
    • 时序图 | center

    • 相关的几个 API
      • ActionMapping
        • Simple class that holds the action mapping information used to invoke a Struts action. The name and namespace are required
      • ActionMapper
        • When given an HttpServletRequest, the ActionMapper may return null if no action invocation request matches, or it may return an ActionMapping that describes an action invocation for the framework to try
      • ActionProxy
        • ActionProxy is an extra layer between XWork and the action so that different proxies are possible.
      • ActionInvocation
        • An ActionInvocation represents the execution state of an Action. It holds the Interceptors and the Action instance. By repeated re-entrant execution of the invoke() method, initially by the ActionProxy, then by the Interceptors, the Interceptors are all executed, and then the Action and the Result.
    人生如棋,我愿为为卒;行走虽慢,可曾见我后退一步!
  • 相关阅读:
    2019.6.20刷题统计
    36 线程 队列 守护线程 互斥锁 死锁 可重入锁 信号量
    35 守护进程 互斥锁 IPC 共享内存 的方式 生产者消费者模型
    34 进程 pid ppid 并发与并行,阻塞与非阻塞 join函数 process对象 孤儿进程与僵尸进程
    33 udp 域名 进程
    32 粘包 文件传输
    31 socket客户端. 服务器 异常 语法
    30 网络编程
    29 元类 异常
    26 封装 反射 常用内置函数
  • 原文地址:https://www.cnblogs.com/MPPC/p/6128439.html
Copyright © 2011-2022 走看看