Struts2运行流程分析

一.Struts2运行流程图:

Struts2运行流程分析_第1张图片

二.运行流程分析:

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

ActionMapping Simpleclass that holds the action mapping information used to invoke a Struts action.The name and namespace are required
ActionMapper Whengiven an HttpServletRequest , the ActionMapper mayreturn null if no action invocation request matches, or it may return an ActionMapping thatdescribes an action invocation for the framework to try
ActionProxy ActionProxy isan extra layer between XWork andthe 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.

你可能感兴趣的:(struts2运行流程)