如何将 POST 请求从 servlet 重定向到另一个应用程序
我们可以将 POST 请求从部署在 server1 中的一个应用程序中的 servlet 重定向到部署在 server2 中的另一个应用程序中的端点吗?是否可以使用 POST 请求而不丢失数据,还是始终需要使用 GET 请求?
Can we redirect a POST request from a servlet in one application deployed in server1 to an endpoint in another application deployed in server2? Is this possible with POST request without loss of data or does it always need to be a GET request?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
几种方法:
如果您当前的请求已经是 POST 请求,只需显式发送 307 重定向而不是 302 重定向(
response.sendRedirect()
默认设置状态代码 302) .但是,这会在某些网络浏览器的客户端发出安全确认警告。
自己玩代理游戏。
但这不会更改 URL,并且客户会认为他仍在您的网站上。另请参阅如何使用 java.net .URLConnection 用于触发和处理 HTTP 请求,了解有关如何使用
URLConnection
的更多详细信息。将所有 POST 数据转换为适合 GET 请求的查询字符串,以便仍然可以使用 302 重定向。
Several ways:
If your current request is already a POST request, just explicitly send a 307 redirect instead of a 302 redirect (the
response.sendRedirect()
sets by default a status code of 302).This will however issue a security confirmation warning at the client side in some web browsers.
Play for proxy yourself.
This will however not change the URL and the client thinks he's still on your site. See also How to use java.net.URLConnection to fire and handle HTTP requests for more detail on how to use
URLConnection
.Convert all POST data to a query string suitable for a GET request so that a 302 redirect can be used nonetheless.
是的,您可以使用
HTTPURLConnection
< /a>这里 是示例
Yes you can using
HTTPURLConnection
here is example