Setting property 'minSpareThreads' to '25' did not find a matching property.

Setting property 'minSpareThreads' to '25' did not find a matching property.


解决方案参考 http://blog.csdn.net/dracotianlong/article/details/8963594 感谢该同学的分享


说明:Tomcat性能调优后需要修改server.xml Tomcat 连接协议配置具体如下

解决方案:

<Connector port="80" protocol="HTTP/1.1" 

<Connector port="80" protocol="org.apache.coyote.http11.Http11Protocol" 

解释

 在配置tomcat的SSL双向握手中,由于6.0.36版本中默认启用了APR(APR是通过JNI访问的可移植库,可以提高Tomcat的性能和伸缩性),所以采用传统的配置方式会报异常;


如果辨别Tomcat是否采用APR:

启动Tomcat时,如果采用APR,日志中会有如下信息:

[plain]  view plain copy print ?
  1. 信息: APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].    



如果没有采用APR,启动时则显示类似的信息:


[plain]  view plain copy print ?
  1. 信息: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: ....后面省略   

你可能感兴趣的:(Setting property 'minSpareThreads' to '25' did not find a matching property.)