如何等待连接?
我总是得到
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您从多个线程使用 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
您应该在完成第一个请求后调用 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.