com.sun.net.httpserver.HttpServer 最大连接数?
有时(很少)当我连接到 com.sun.net.httpserver.HttpServer 的正在运行的实例时,我会收到“连接被拒绝”消息。
有人知道这可能是为什么吗?它可以处理的连接数是否有线程限制?我可以增加吗? 谢谢。 -r
Sometimes (pretty rarely) when I connect to a running instance of a com.sun.net.httpserver.HttpServer I get a "connection refused" message back.
Anybody know why this might be? Is there a thread limit to the number of connections it can handle? Can I increase it?
Thanks.
-r
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 文档:
你可能会看到这个。
或者,您是否使用 setExecutor()。默认执行器配置的线程可能比您需要的要少,并且配置了适当的 ThreadPoolExecutor 可能可以工作。
From the doc:
You may be seeing this.
Alternatively, have you set an executor using setExecutor(). The default executor may have fewer threads configured than you need, and a suitably-configured ThreadPoolExecutor may work.