如何等待连接?

发布于 2024-10-21 02:23:54 字数 217 浏览 1 评论 0原文

我总是得到

java.lang.IllegalStateException: 无效使用 SingleClientConnManager:连接 仍然分配。确保释放 分配前的连接 另一个。

异常。我尝试在使用后使用 abort 但仍然存在。

有什么办法可以等待连接完成吗?

I always got

java.lang.IllegalStateException:
Invalid use of
SingleClientConnManager: connection
still allocated. Make sure to release
the connection before allocating
another one.

Exception.I tried to use abort after use but still remains.

Is there any way to wait for the connection to complete?

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

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

发布评论

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

评论(2

小女人ら 2024-10-28 02:23:54

如果您从多个线程使用 http 客户端,则需要使用 ThreadSafeClientConnManager。

http:// /hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/org/apache/http/impl/conn/tsccm/ThreadSafeClientConnManager.html

If you are using the http client from multiple threads you need to use the ThreadSafeClientConnManager.

http://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/org/apache/http/impl/conn/tsccm/ThreadSafeClientConnManager.html

Bonjour°[大白 2024-10-28 02:23:54

您应该在完成第一个请求后调用 conn.releaseConnection,这将允许您为下一个请求获取同一底层连接的另一个句柄。

如果这不是问题,您需要提供更多详细信息 - 您的问题目前还相当不清楚。

You should call conn.releaseConnection after you've finished with the first request, which will allow you to get another handle to the same underlying connection for the next request.

If that's not the problem, you need to give more details - your question is fairly unclear at the moment.

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