异常:A web application registered the JDBC driver [com.mysql.jdbc.Driver] but failed to unregister it when the web application was stopped.
方案一:这样的错误是因为版本问题。我用的是tomcat 6.0.26,把他换成tomcat 6.0.20,就解决了
方案二:tomcat 6.0.25以后引入了内存泄露侦测,对于垃圾回收不能处理的对像,它就会做日志。老外提出的办法是要么用旧版本的tomcat,要么就在tomcat的server.xml文件中,把
<!– Prevent memory leaks due to use of particular java/javax APIs–>
<Listener className=”org.apache.catalina.core.JreMemoryLeakPreventionListener”/>;
这个监听给关了。
我试了把这个监听关了,就不会再报上面那个信息,但是这样子运行tomcat会不会有其他的问题,我就不得而知了。
文献出处:http://www.zhangyuwei.me/2011/10/29/s2sh%E6%95%B4%E5%90%88%EF%BC%9Atomcat/comment-page-1/?replytocom=18