摘要:Tomcat的核心是Connector和Container,被Service包装,所有的Service由最外层的Server统一管理 图 Server->service1(多个service)->Connectors(每个service对应多个connector)->Engine(处理引擎)->Host(多个主机资源)->Context(多个虚拟目录) 组织结构描述 Ser
Tomcat的核心是Connector和Container,被Service包装,所有的Service由最外层的Server统一管理
Server->service1(多个service)->Connectors(每个service对应多个connector)->Engine(处理引擎)->Host(多个主机资源)->Context(多个虚拟目录)
组织结构描述
Server
Service
Contector
Engine
Host
Context
样本描述
http://localhost:8080/wsota/wsota_index.jsp
发送请求到8080端口,被Connector监听获取
Connector完成http协议解析,把请求交给Service的Engine处理,等待Engine的返回
Engine获取localhost:8080/wsota/wsota_index.jsp,进行虚拟主机的匹配,找到localhost的Host
Engine获取wsota/wsota_index.jsp,进行虚拟目录的匹配,找到Host的wsota对应的Context
path为wsota的Context对象获取wsota_index.jsp,开始找到这个url的映射的servlet,主要看.jsp后缀
开始构造httpServletRequest和HttpServletResponse对象,作为参数传递给Servlet的doGet和doPost方法
Context把处理之后的HttpServletResponse对象返回给Host
Host对象把HttpServletResponse对象返回给Engine
Engine对象把HttpServletResponse对象返回给Connector
Connector对象把HttpServletResponse返回给浏览器
Connector关闭Socket
相关文章推荐
虚拟主机的专业参数,分别都是什么意思?2022-09-09
中非域名注册规则是怎样的?注册域名有什么用处? 2022-01-10
HostEase新年活动促销 美国/香港主机全场低至五折2021-12-28
HostGator下载完整备份教程分享2021-12-28
Flink中有界数据与无界数据的示例分析2021-12-28