web.xml 404重定向到servlet,如何获取原始URI?

发布于 2024-12-05 00:57:31 字数 437 浏览 1 评论 0原文

我通过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小姐丶请自重 2024-12-12 00:57:31

是的,它可以作为请求属性使用,名称为 javax.servlet.forward.request_uri,由 RequestDispatcher#FORWARD_REQUEST_URI。错误页面位置即由简单的 RequestDispatcher#forward() 调用。

所以,你可以在 servlet 中如下获取:

String originalUri = request.getAttribute(RequestDispatcher.FORWARD_REQUEST_URI);

或者在 EL 中:

<p>Original URI: ${requestScope['javax.servlet.forward.request_uri']}</p>

Yes, it's available as a request attribute with the name javax.servlet.forward.request_uri, which is keyed by RequestDispatcher#FORWARD_REQUEST_URI. The error page location is namely invoked by a simple RequestDispatcher#forward() call.

So, you can get it as follows in servlet:

String originalUri = request.getAttribute(RequestDispatcher.FORWARD_REQUEST_URI);

or in EL:

<p>Original URI: ${requestScope['javax.servlet.forward.request_uri']}</p>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文