the web application registered the jbdc driver but failed unregistered it when application stoped

tomcat 6.025以后引入了内存泄露侦测,对于垃圾回收不能处理的对像,它就会做日志。如6.0.26、6.0.29

解决方法一:将tomcat换成6.0.20或以下即可

解决方法二:在tomcat的server.xml文件中,把


<!-- Prevent memory leaks due to use of particular java/javax APIs-->
<Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" />;

这个监听给关了。


你可能感兴趣的:(tomcat,tomcat)