标签:
流程:
1:url 提交到tomcat http://localhost/s2/firstAction
2:tomcat 根据工程名 去 webapps 文件夹下找到对应工程
3:找web.xml StrutsPrepareAndExecuteFilter 被执行,内部调用 struts.xml
4:从 struts.xml 找到了 name="firstAction" 的action元素(url中 跟此值匹配)
5:根据class 属性的值 反射 调用 execute 方法(默认).
标签:
原文地址:http://www.cnblogs.com/hwgok/p/5397566.html