tomcat处理Http请求流程的步骤

1、Engine匹配到name=localhost的Host(即使匹配不到也把请求交给该Host处理,因为该Host被定义为该Engine的默认主机)。

2、Connector把该请求交给它所在的Service的Engine来处理,并等待来自Engine的回应。

3、Engine把HttpServletResponse对象返回给Connector。

4、localhostHost获得请求/my-web-maven/index.jsp,匹配它所拥有的所有Context。

5、Context把执行完了之后的HttpServletResponse对象返回给Host。

6、Engine获得请求localhost/my-web-maven/index.jsp,匹配它所拥有的所有虚拟主机Host,我们的虚拟主机在server.xml中默认配置的就是localhost。

7、Host匹配到路径为/my-web-maven的Context(如果匹配不到就把该请求交给路径名为”"的Context去处理)。

8、Connector把HttpServletResponse对象返回给客户browser。

9、Host把HttpServletResponse对象返回给Engine。

10、Context匹配到URLPATTERN为*.jsp的servlet,对应于JspServlet类。

11、path=”/my-web-maven”的Context获得请求/index.jsp,在它的mappingtable中寻找对应的servlet。

12、构造HttpServletRequest对象和HttpServletResponse对象,作为参数调用JspServlet的doGet或doPost方法。

上一篇:Python TensorFlow 2.6 获取 MNIST 数据