web.xml 404重定向到servlet,如何获取原始URI?
我通过 web.xml 中的以下内容将 404 错误重定向到 servlet。
<error-page>
<error-code>404</error-code>
<location>/notFound.do</location>
</error-page>
我想记录请求试图去的地方,但我没有从引用标头中获取它: request.getHeader("referer")
如果我只是点击任何旧的随机不存在的页面,则显示“null” 。
request.getRequestURL()/request.getRequestURI() 都仅仅显示最终的登陆 servlet 信息(即 /notFound)。
有什么方法可以获取所请求的“错误”页面 URL?
I'm redirecting 404 errors to a servlet via the following in my web.xml.
<error-page>
<error-code>404</error-code>
<location>/notFound.do</location>
</error-page>
I'd like to log where the request was trying to go, but I'm not getting it from the referrer header: request.getHeader("referer")
That shows 'null' if I just hit any old random non-existent page.
And request.getRequestURL()/request.getRequestURI() both merely shows the final landing servlet info (I.e., /notFound).
Any way to get the 'bad' page URL that was requested?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,它可以作为请求属性使用,名称为
javax.servlet.forward.request_uri
,由RequestDispatcher#FORWARD_REQUEST_URI
。错误页面位置即由简单的RequestDispatcher#forward()
调用。所以,你可以在 servlet 中如下获取:
或者在 EL 中:
Yes, it's available as a request attribute with the name
javax.servlet.forward.request_uri
, which is keyed byRequestDispatcher#FORWARD_REQUEST_URI
. The error page location is namely invoked by a simpleRequestDispatcher#forward()
call.So, you can get it as follows in servlet:
or in EL: