server.xml的整体结构如下:
<Server>
<Service>
<Connector />
<Connector />
<Engine>
<Host>
<Context /><!-- 现在常常使用自动部署,不推荐配置Context元素,Context小节有详细说明 -->
</Host>
</Engine>
</Service>
</Server>
假设来自客户的请求为:http://localhost:8080/wsota/wsota_index.jsp
-
请求被发送到本机端口8080,被在那里侦听的Coyote HTTP/1.1 Connector获得
-
Connector把该请求交给它所在的Service的Engine来处理,并等待来自Engine的回应
-
Engine获得请求localhost/wsota/wsota_index.jsp,匹配它所拥有的所有虚拟主机Host
-
Engine匹配到名为localhost的Host(即使匹配不到也把请求交给该Host处理,因为该Host
被定义为该Engine的默认主机) -
localhost Host获得请求/wsota/wsota_index.jsp,匹配它所拥有的所有Context
-
Host匹配到路径为/wsota的Context(如果匹配不到就把该请求交给路径名为""的Context去处理)
-
path="/wsota"的Context获得请求/wsota_index.jsp,在它的mapping table中寻找对应的servlet
-
Context匹配到URL PATTERN为*.jsp的servlet,对应于JspServlet类
-
构造HttpServletRequest对象和HttpServletResponse对象,作为参数调用JspServlet的
doGet或doPost方法 -
Context把执行完了之后的HttpServletResponse对象返回给Host
-
Host把HttpServletResponse对象返回给Engine
-
Engine把HttpServletResponse对象返回给Connector
-
Connector把HttpServletResponse对象返回给客户browser
网友评论