一,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
…
{空行}
POST
/servlet/serv HTTP/1.1
Host: www.foo.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 32
username=billgates&password=hehe
HTTP/1.1
200 OK
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"/>
时间: 2024-10-10 07:50:38