Spring MVC 中从服务器端发布数据

发布于 2024-12-09 13:06:33 字数 141 浏览 0 评论 0原文

我正在制作一个自动化网站,将多个文件发送到另一个网站,以防止每次发送文件时填写表单。

我想从服务器发出 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 技术交流群。

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

发布评论

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

评论(2

没有心的人 2024-12-16 13:06:33

使用 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.

浅暮の光 2024-12-16 13:06:33

您可以使用 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.

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