首页 > 代码库 > HTTP协议基础以及Web Application的概念
HTTP协议基础以及Web Application的概念
一,HTTP协议基础
HTTP(Hypertext Transfer Protocol, 超文本传输协议)
HTTP是以明文方式发送数据的
用于从WWW服务器传输超文本到本地浏览器的传输协议。
HTTP协议是以TCP/IP为基础的高层协议。
现在广泛使用的版本HTTP/1.1
GET /latest.html HTTP/1.1
Host: www.foo.com
Content-Type: text/html
…
{空行}
Host: www.foo.com
Content-Type: text/html
…
{空行}
POST/servlet/serv HTTP/1.1
Host: www.foo.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 32
username=billgates&password=hehe
Host: www.foo.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 32
username=billgates&password=hehe
HTTP/1.1200 OK
Date: Fri,31 Dec 2003 10:23:34 GMT
Content-Type: text/html
Content-length: 280
<html>
……
</html>
Date: Fri,31 Dec 2003 10:23:34 GMT
Content-Type: text/html
Content-length: 280
<html>
……
</html>
二,Web Application的概念
1.Web Application Name
- WEB-INF
- web.xml
- 该web app的配置文件
- lib
- 该web app用到的库文件
- classes
- 存放编译好的servlet
- web.xml
- META-INF
- 存放该web app的上下文信息,符合J2EE标准
2.Web Application可以直接放在webapp下面 ,也可以通过配置文件指定到其他目录 <host>里面
- <Context path=“/虚拟路径名“ docBase=”目录位置" debug="0" reloadable="true"/>
HTTP协议基础以及Web Application的概念
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。