想知道你的JSP页面会被缓存吗?

时间:2011-10-20 14:52:46

标签: jsp

使用jsp生成动态页面。想知道jsp会不会被缓存?我没有使用任何过期或缓存控制。

1 个答案:

答案 0 :(得分:0)

我认为@BalusC所指的是获取嗅探器并将您的请求捕获到您服务器上的jsp页面上,一旦您安装了add on然后打开,您就可以获得一个火狐http headers live的附加功能通过去火狐来加上==>工具==>实时HTTP标头,我在这里打印了一个示例捕获,这些标题很容易阅读。还有很多其他工具可以做一些类似的工作。

         http://www.jsptut.com/Further.jsp

         //Request header
         GET /Further.jsp HTTP/1.1
         Host: www.jsptut.com
         User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:2.0.1) Gecko/20100101 Firefox/4.0.1
         Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
         Accept-Language: en-us,en;q=0.5
         Accept-Encoding: gzip, deflate
         Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
         Keep-Alive: 115
         Connection: keep-alive
         Referer: http://www.jsptut.com/
         Cookie: JSESSIONID=ds43d6a9a50050pqfv61h
         Cache-Control: max-age=0

         //Response Header from server
         HTTP/1.1 200 OK
         Server: Blazix Java Server 1.2
         Date: Thu, 20 Oct 2011 17:49:30 GMT
         Content-Type: text/html
         Transfer-Encoding: chunked
         Via: 1.1 xx.xx.xx:80 
         Connection: keep-alive