现在用的tomcat6.0,不知道大家注意没有,在启动的时候,那个启动窗口最上面出现这样一条信息:
信息: The APR based Apache Tomcat Native library which allows optimal performance in production
environments was not found on the java.library.path:
这实际上是tomcat推荐使用apache的apr
需要下载tcnative-1.dll下载后放到tomcat安装目录下的bin目录下,重启tomcat之后就会发现最上面的信息变成下面这样:
org.apache.catalina.core.AprLifecycleListener init
信息: Loaded APR based Apache Tomcat Native library 1.1.12.
org.apache.catalina.core.AprLifecycleListener
init
信息: APR capabilities: IPv6 [true], sendfile [true], accept filters
[false], ra
ndom [true].
大功告成!
PS: 需要注意不同版本的tomcat要求的tcnative-1.dll的版本也不同,这个可以通过tomcat启动时的控制台日志中看出来!!!
参考链接:http://blog.sina.com.cn/s/blog_538a3bfb0100u2jo.html