摘要:
我一直为一个问题困惑,当我明白了以后,又不知道该怎么去说我要问的问题,现在我明白了,就把它帖出来,也不知道其他人遇到这个问题的时候,搜索的关键字能不能搜到,呵呵
首先客户端发送请求:http://localhost:8080/index.html。实际上发送的数据是:
GET /index.html HTTP/1.1
Accept: */*
Accept-Language: en,zh-cn;q=0.5
UA-CPU: x86
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (MSIE 7.0; MSIE 7.0; Windows NT 5.1; InfoPath.1)
Host: localhost:8080
Connection: Keep-Alive 阅读全文
摘要:
Tomcat的容器定义了四个级别, 全部继承一个公共接口org.apache.catalina.Container, Engine 1-----* Host 1-----1 Context 1-----* Wrapper Wrpper包含了每个Servlet, Context包含多个Wrapper, 在Tomcat中是WabApp, 通常放在WAR包。 每个容器都可以添加下一级的子容... 阅读全文