Struts运行机制

1. 当客户端发送一个URL请求( http://localhost/webappname/actionname),Tomcat接收该请求
2. Tomcat找到相应的webapp下的WEB-INF/web.xml,找到stuts2 filter处理类 org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
3. 类 org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter查看stuts.xml
4. stucts.xml,相继找对应的namespace, action和result,从而找到处理该请求的jsp文件。
5. JSP处理完成后,通过tomcat将结果返回客户端

你可能感兴趣的:(Struts运行机制)