<!-- IE请求报文解释 -->
<!--
请求行 
请求头信息:头名称+值
空行
请求体。get请求没有请求体,有请求行
-->

GET /Hello/index.jsp HTTP/1.1
<!-- 浏览器支持的资源类型 */*表示支持所有 -->
Accept: text/html, application/xhtml+xml, */*
<!-- **浏览器语言 -->
Accept-Language: zh-CN
<!-- *****浏览器和操作系统信息 -->
User-Agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)
<!-- 浏览器支持的压缩格式 -->
Accept-Encoding: gzip, deflate
<!-- 请求主机信息 -->
Host: localhost:8080
<!-- 是无状态协议,表示连接一小会,FTP是有状态协议 -->
Connection: Keep-Alive



------------------------
<!-- IE响应报文解释 -->
<!--
响应行 
响应头信息:头名称+值
空行
响应正文。

-->


<!-- 响应行(协议版本 状态码 状态码解释。状态码:2开头是成功 3需要转因  4是客户端错误 5表示服务端错误) -->
HTTP/1.1 200 OK

<!-- 服务器版本信息 -->
Server: Apache-Coyote/1.1
Set-Cookie: JSESSIONID=1C0802A16D85C5B3379BBCBAF324FC62; Path=/Hello/; HttpOnly
<!-- *****响应内容MIME类型 -->
Content-Type: text/html;charset=ISO-8859-1
<!-- 字节长度 -->
Content-Length: 622
<!-- 相应时间 -->
Date: Sun, 17 Apr 2016 01:58:06 GMT




<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="http://localhost:8080/Hello/">
    
    <title>My JSP 'index.jsp' starting page</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
  </head>
  
  <body>
    This is my JSP page. <br>
  </body>
</html>