getRequestDispatcher 和 FQDN
有没有办法将 request.getRequestDispatcher
与 FQDN 一起使用?就像
request.getRequestDispatcher("http://mysite.com/test")
如果我尝试它,我会收到错误
JSPG0036E: 找不到资源 /http:/mysite.com/test
我需要将其转发到当前上下文之外的另一个应用程序。
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,没有。
如果另一个应用程序在同一个 servlet 容器中运行,那么您能做的最好的事情就是配置 servlet 容器,让这些 Web 应用程序共享彼此的上下文,以便您可以通过
ServletContext#getContext()
并依次使用其RequestDispatcher
。如果另一个应用程序完全超出您的控制,那么重定向是您能做的最好的事情。
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 itsRequestDispatcher
.If the another application is completely out of your control, then a redirect is best what you can do.