在将响应标头发送到客户端之前查看它们?
我正在为学校写一个项目。我希望能够在网页上显示 Web 服务器发送到客户端的响应标头。我能够从 HttpServletRequest 读取请求标头,并且能够将响应标头写入 HttpServletResponse ,没有问题。
有什么办法可以做到这一点吗?是否可以复制服务器将要发送的内容?
我正在使用 Eclipse Helios 来开发带有 POJOs 应用程序的 JSP,并使用在 Debian Lenny 上运行的 Tomcat 5.5 来为其提供服务。
谢谢,
伊恩
I am writing a project for school. I want to be able to display, on a web page, the response headers that the web server sent to the client. I am able to read request headers from HttpServletRequest and am able to write response headers to HttpServletResponse no problem.
Is there any way to do this? It is possible to make a copy of what the server is about to send?
I am using Eclipse Helios to develop this JSP with POJOs application, and am using Tomcat 5.5 running on Debian Lenny to serve it.
Thanks,
Ean
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
Filter
和HttpServletResponseWrapper
。使用以下内容覆盖三个
addXHeader(..)
方法:然后,在
Filter
中:但我会使用 Firebug 来检查标头。
或者查看这个问题(第二个答案)
You can use a
Filter
and anHttpServletResponseWrapper
.Override the three
addXHeader(..)
methods with something like:And then, in a
Filter
:But I would use Firebug to check headers.
Or see this question (the 2nd answer)
您可能想要编写一个 servlet 过滤器,它可以在发送请求和响应之前拦截请求和响应。
You probably want to write a servlet filter which can intercept both the request and response before it gets sent.