Hi
I am using jboss 4.2.3 and when configuring the http connector, there is a warn:
WARN [org.apache.catalina.connector.Connector] Property minSpareThreads not found on the protocol handler.
Why can't i specify the minSpareThreads?
my connector settings are as follows:
<Connector port="8080" address="${jboss.bind.address}" maxThreads="1000" maxHttpHeaderSize="8192" emptySessionPath="true" protocol="HTTP/1.1" enableLookups="false" redirectPort="443" acceptCount="100" connectionTimeout="60000" disableUploadTimeout="true" compression="on" compressableMimeType="text/html,text/xml,text/plain,text/javascript,text/css" maxKeepAliveRequests="200" minSpareThreads="100" tcpNoDelay="true" />
Because in Tomcat 6.0 (which is what JBoss Web in AS 4.2.3 is based) the minSpareThreads attribute was moved to the Executor element: http://tomcat.apache.org/tomcat-6.0-doc/config/executor.html