Spring MVC 中从服务器端发布数据
我正在制作一个自动化网站,将多个文件发送到另一个网站,以防止每次发送文件时填写表单。
我想从服务器发出 POST 请求,因为 AJAX 不允许向其他域发出请求。
我怎样才能做到这一点?
我正在使用 Spring MVC3
I am making a automation website to send multiple files to an another site to prevent filling form every time to send a file.
I want to to make the POST request from server, because AJAX doesn't allow request to other domains.
How I can make this?
I am using Spring MVC3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 apache http 组件 - 它允许您执行 http 请求。您还可以使用(不使用第 3 方库)
new URL(..).openConnection()
,但用它编写代码不太令人愉快。Use apache http components - it allows you to perform http requests. You can also use (without 3rd party libraries)
new URL(..).openConnection()
, but it's less pleasant to code with it.您可以使用 Apache HTTP 组件 来实现应用程序中您想要的几乎任何 HTTP 调用。另外,请注意,如果您确实需要的话,可以使用某些辅助技术(例如 Flash)进行跨域 AJAX。
You can use Apache HTTP Components to implement pretty much any HTTP calls you want in your application. Also, note that it is possible to do cross domain AJAX with certain helper technologies like Flash ... if you really needed too.