当前位置: 代码迷 >> Web前端 >> tomcat 最大连市接数配置
  详细解决方案

tomcat 最大连市接数配置

热度:163   发布时间:2012-08-22 09:50:35.0
tomcat 最大连接数配置

server.xml中配置???
? <Connector ? port="8080" ?
? ? ? maxThreads="150" ? ?
? ? ? minSpareThreads="25" ? ?
? ? ? maxSpareThreads="75" ?
? ? ? acceptCount="100" ?
? ? ? /> ?
? maxThreads="150" ? ? 表示最多同时处理150个连接 ?
? minSpareThreads="25" ? ? 表示即使没有人使用也开这么多空线程等待 ?
? maxSpareThreads="75" ? ? 表示如果最多可以空75个线程,例如某时刻有80人访问,之后没有人访问了,则tomcat不会保留80个空线程,而是关闭5个空的。 ?
? ?
? acceptCount="100" ? 当同时连接的人数达到maxThreads时,还可以接收排队的连接,超过这个连接的则直接返回拒绝连接。

  相关解决方案