2
Tomcat-maxThreads与maxConnections
在Tomcat中server.xml,maxThreads与maxConnections 我了解这maxConnections是服务器打开的连接数 并且maxThreads是请求处理线程的最大数量 但是,两个配置参数如何协同工作,显然您不会将其设置maxConnections为1000和maxThreads10 这两个配置参数之间是什么关系? <Connector port="8443" protocol="org.apache.coyote.http11.Http11Protocol" maxThreads="250" SSLEnabled="true" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" connectiontimeout="20000" />