getRequestDispatcher 和 FQDN

发布于 2024-09-24 02:28:14 字数 294 浏览 1 评论 0 原文

有没有办法将 request.getRequestDispatcher 与 FQDN 一起使用?就像

request.getRequestDispatcher("http://mysite.com/test")

如果我尝试它,我会收到错误

JSPG0036E: 找不到资源 /http:/mysite.com/test

我需要将其转发到当前上下文之外的另一个应用程序。

谢谢

is there a way to use request.getRequestDispatcher with a FQDN? Something like

request.getRequestDispatcher("http://mysite.com/test")

If I try it, I get the error

JSPG0036E: Failed to find resource /http:/mysite.com/test

I need to forward it outside the current context to another application.

Thanks

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

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

发布评论

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

评论(1

空袭的梦i 2024-10-01 02:28:14

不,没有。

如果另一个应用程序在同一个 servlet 容器中运行,那么您能做的最好的事情就是配置 servlet 容器,让这些 Web 应用程序共享彼此的上下文,以便您可以通过 ServletContext#getContext() 并依次使用其 RequestDispatcher

ServletContext currentContext = getServletContext();
ServletContext otherContext = currentContext.getContext("/test");
otherContext.getRequestDispatcher("/some.jsp").forward(request, response);

如果另一个应用程序完全超出您的控制,那么重定向是您能做的最好的事情。

response.sendRedirect("http://mysite.com/test");

No, there isn't.

If the another application is running at the same servletcontainer, then best what you can do is to configure the servletcontainer to let those webapps share each other's context so that you can get the other context by ServletContext#getContext() and in turn use its RequestDispatcher.

ServletContext currentContext = getServletContext();
ServletContext otherContext = currentContext.getContext("/test");
otherContext.getRequestDispatcher("/some.jsp").forward(request, response);

If the another application is completely out of your control, then a redirect is best what you can do.

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