在我的Java / Struts2 / Tomcat应用程序中,请求生成" 304 Not Modified"响应,文件仍在响应中发送。
这是Fiddler捕获的响应示例:
HTTP/1.1 304 Not Modified
Date: Thu, 26 Jun 2014 11:27:27 GMT
Server: Apache/2.2.16 (Ubuntu)
Connection: Keep-Alive
Keep-Alive: timeout=15, max=100
Vary: Accept-Encoding
/*! jQuery v1.7.2 jquery.com | jquery.org/license */
(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?
a.defaultView||a.parentWindow:!1}function cu(a){if(!cj[a]){var b=c.body,d=f("
<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ck||
[...]
这是一个问题,因为返回文件的内容被插入到下一个请求的文件中,最终导致损坏和奇怪的行为。
这只发生在从&#34; / struts&#34;加载的资源上。路径,如:
/struts/utils.js
/struts/js/base/jquery-1.10.2.min.js
/struts/js/base/jquery.ui.core.min.js?s2j=3.7.0
&#34; / struts&#34; path由struts2类处理
org.apache.struts2.dispatcher.DefaultStaticContentLoader
这些是系统的相关元素:
直接连接到tomcat时,我没有在Not Modified标题后得到任何意外数据。
Apache Server配置还没有被修改,只是/ contents和两个modjk指令的别名:
JkMount /* ajp13_worker
JkUnMount /contents/* ajp13_worker
没有任何与/ struts或缓存或任何异国情调相关的内容。 ModJK配置是默认设置。
有什么建议吗?
答案 0 :(得分:2)
这是一个没有解决问题的答案,但却提出了新的问题。
在apache服务器后面使用sitemesh3时会发生响应损坏。 如果我直接访问tomcat服务器,响应是干净的304。 如果我通过modjk / apache访问,则响应包含意外数据。
意外数据的原因是由于sitemesh的工作原理:在发送响应时,在某些时候它会强制struts忽略任何&#34; If-Modified-Since&#34;标头,将请求的内容写入响应缓冲区。然后通过在缓冲区的开头添加304标头继续。
请参阅,开始
org.sitemesh.webapp.contentfilter.HttpServletRequestFilterable
org.apache.struts2.dispatcher.DefaultStaticContentLoader.process()
我不知道从哪里开始。这是一个错误吗?它是Apache Server错误还是Tomcat错误或Struts错误或Sitemesh错误?!
要复制问题,你需要在apache后面运行一个带有sitemesh的struts webapp的tomcat,并在fiddler2处于活动状态时获取此url两次:
http://[test.server.address]/struts/utils.js
一块蛋糕o_O&#39;
编辑:
如果我检查modjk日志,我可以清楚地看到传回给Apache服务器的文件:
: trying to connect socket 29 to 127.0.0.1:9009
: socket 29 [127.0.0.1:57195 -> 127.0.0.1:9009] connected
: sending to ajp13 pos=4 len=581 max=8192
.4.A....HTTP/1.1
.../struts/utils
.js...2.235.97.2
[...]
...Accept-Langua
ge..#en,en-US;q=
0.8,it-IT;q=0.6,
it;q=0.4....+JSE
SSIONID=B77369AB
D8239724A27A5CC5
6E06DED8...If-Mo
dified-Since...F
ri,.27.Jun.2014.
08:37:46.GMT....
.0....AJP_REMOTE
_PORT...19143...
.JK_LB_ACTIVATIO
N...............
: (rdp_worker) request body to send 0 - request body to resend 0
: received from ajp13 pos=0 len=20 max=8192
..0..Not.Modifie
d...............
: status = 304
: Number of headers is = 0
: received from ajp13 pos=0 len=4767 max=8192
.../*..*.$Id:.ut
ils.js.1240312.2
012-02-03.19:44:
51Z.jogep.$..*..
*.Licensed.to.th
e.Apache.Softwar
e.Foundation.(AS
F).under.one..*.
or.more.contribu
tor.license.agre
ements...See.the
[...]
the.ajaxValidati
on.interceptor.S
trutsUtils.getVa
lidationErrors.=
: ws_write::mod_jk.c (537): written 4763 out of 4763
: received from ajp13 pos=0 len=4 max=8192
................
: received from ajp13 pos=0 len=2 max=8192
................
: AJP13 protocol: Reuse is OK
当我直接访问tomcat并使用tcpflow转储TCP流量时,我没有看到任何虚假数据:
# tcpflow -p -s -c host xxx.xxx.xxx.xxx and port 8080
xxx.xxx.xxx.xxx.19292-yyy.yyy.yyy.yyy.08080: GET /rdp/struts/utils.js HTTP/1.1
Host: xxx.net:8080
Connection: keep-alive
Cache-Control: max-age=0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en,en-US;q=0.8,it-IT;q=0.6,it;q=0.4
Cookie: JSESSIONID=B0F02CXXXEC3448F1B927C0E8C579A9B
If-Modified-Since: Fri, 27 Jun 2014 08:49:23 GMT
yyy.yyy.yyy.yyy.08080-xxx.xxx.xxx.xxx.19292: HTTP/1.1 304 Not Modified
Server: Apache-Coyote/1.1
Date: Fri, 27 Jun 2014 08:52:43 GMT
因此,将缓冲区返回到ajp端口并将其返回到网络套接字似乎有不同的行为。这对我来说太低了。
编辑:
解决方法
我实现的解决方法在于让Apache Server处理/ struts上下文: