struts2的处理流程_2015.01.05

01:首先经过web.xml里面的拦截

  StrutsPrepareAndExecuteFilter

02:然后struts2内置的一些拦截器或用户自定义拦截器

  Interceptor

03:用户编写的action类

  Action

04:返回结果

  Result配置

05:Jsp/html

  

 Struts2对用户的每次请求都会创建一个action,

说以Struts2中的action是线程安全的

原文地址:https://www.cnblogs.com/zjsy/p/4204223.html