如何将 Servlet 重定向到给定的 URL

发布于 2024-10-21 07:43:18 字数 221 浏览 2 评论 0原文

目前,我正在

request.getRequestDispatcher("thePage.html").forward(request, response);

我的 servlet 中向用户使用新页面。但 servlet 的 URL 保留在浏览器地址栏中。我希望在浏览器地址栏中显示目标页面的 URL,而不是初始 servlet URL。我该如何实现这个目标?

Currently, I am using

request.getRequestDispatcher("thePage.html").forward(request, response);

in my servlet to the user the new page. But the URL of the servlet stays in browser address bar. I want the URL of the target page to be shown in browser address bar, instead of the initial servlet URL. How do I accomplish this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

赠佳期 2024-10-28 07:43:18

您可以执行response.sendRedirect("thePage.html"),但该页面需要可以直接从互联网访问。特别是可以直接访问,不需要先去servlet。它还会产生额外的往返(而转发仅在同一请求响应周期内返回结果)。

根据您想要执行的操作,您可能还应该查看 Servlet 过滤器以及将任何名称(包括“thePage.html”和路径前缀)与 Servlet 关联的可能性。

You can do response.sendRedirect("thePage.html"), but then that page needs to be directly accessible from the Internet. In particular, it can be accessed directly without going to the servlet first. It will also incur an additional roundtrip (whereas a forward just returns the result within the same request-response cycle).

Depending on what you are trying to do, you should probably also look at Servlet Filters and the possibility to associate any name (including "thePage.html" and path prefixes) to a Servlet.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文