从 tomcat 服务器内执行 http 请求的正确方法是什么

发布于 2024-12-11 15:24:02 字数 164 浏览 0 评论 0原文

我有一个 Tomcat 服务器来保存 Web 应用程序,我希望能够从该 Web 应用程序中向其他 http 服务器调用 http 请求。正确的做法是什么?
另一件无能为力的事情是Web应用程序需要调用多个http请求。 所以我想我需要使用线程池。
tomcat可以给我线程池吗?或者我需要构建一个。

i have tomcat server that holds web application i like to be able to call http requests from within this web application to other http server . what is the right way doing it ?
another impotent thing is that the web application needs to call multiple http request.
so i guess i need to use thread pool .
can tomcat give me thread pool or i need to build one .

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

怪我闹别瞎闹 2024-12-18 15:24:02

使用commons-httpclient。对于线程池,请使用 ExecutorService 支持java 5.0 中提供。

它与在任何常规 java 应用程序中进行 http 调用的方式相同 - 在 tomcat 中运行它不会使其变得更容易或困难。

Use the commons-httpclient. For thread pool use the ExecutorService support provided in java 5.0.

It is same as how you would make http calls in any regular java app - running it in tomcat doesn't make it easier or difficult.

じ违心 2024-12-18 15:24:02

我建议使用 HttpClient 或类似的东西,而不是使用原始Java API。

I'd suggest using something like HttpClient or similar, rather than using raw Java APIs.

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