Struts 2 使用参数重定向外部 URL
我想从 struts2 操作向外部 URL 发出 POST HTTP 请求,并在请求中发送参数。
我读到可以通过这种方式完成: 带有 POST 参数的外部 django 重定向 但我想知道是否可以通过不同的方式来完成,比如说,直接从操作而不是通过 JSP 来完成。
感谢您的任何建议。
I want to make a POST HTTP request from a struts2 action to an external URL and send parameters in the request.
I have read that it can be done in this way: External django redirect with POST parameters but I was wondering if it can be done in a different way, let's say, directly from the action and not throgh a JSP.
Thanks for any suggestions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于您实际想要做什么。
如果您尝试从您的操作向另一个网站发出请求,然后对响应执行某些操作并将数据返回给用户而用户不知道外部网站已被访问,那么您需要使用 Apache 的 HttpClient 之类的东西。这可以在任何地方完成,bt 显然不属于您所说的 JSP 中。
It depends on what you're actually trying to do.
If you're trying to make a request from your action to another site, then do something with the response and return data to the user without the user knowing the external site was accessed, then you'd need to use something like Apache's HttpClient. That can be done anywhere, bt obviously doesn't belong in a JSP as you state.