假设来自客户端的请求为:
http://localhost:8080/lizhx/lizhx_index.jsp
- 请求被发送到本机端口8080,被在那里侦听的Coyote HTTP/1.1 Connector获得。
- Connector把该请求交给它的Service的Engine来处理,并等待Engine的回应。
- Engine获得请求localhost/lizhx/lizhx_index.jsp,匹配所有虚拟主机Host。
- Engine匹配到名为localhost的Host。
- localhost Host获得请求/lizhx/lizhx_index.jsp,匹配它所拥有的所有Context。
- Host匹配到路径为/lizhx的Context。
- path = “/lizhx”的Context获得请求为/lizhx_index.jsp,在它的mapping table中寻找对应的Servlet。
- Context匹配到URL PATTERN为*.jsp的Servlet,对就于JspServlet类。
- 构造HttpServletRequest对象和HttpServletResponse对象,作为参数调用JspServlet的daGet或doPost方法。
- Context把执行完了之后的HttpServletResponse对象返回给Host。
- Host把HttpServletResponse对象返回给Engine。
- Engine把HttpServletResponse对象返回给Connector。
- Connector把HttpServletResponse对象返回给客户Browser。
时间: 2024-11-09 23:13:36