tomcat启动起来后,我重新部署了项目后,就出现了如下的错误:
2010-6-7 10:21:16 org.apache.catalina.startup.HostConfig checkResources
信息: Reloading context [/chinaecce]
2010-6-7 10:21:16 org.apache.catalina.core.ApplicationContext log
信息: Closing WebApplicationContext of Struts ActionServlet 'action', module ''
2010-6-7 10:21:16 org.apache.catalina.loader.WebappClassLoader clearReferencesJdbc
严重: A web application registered the JBDC driver [com.mysql.jdbc.Driver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
2010-6-7 10:21:16 org.apache.catalina.loader.WebappClassLoader clearReferencesThreads
严重: A web application appears to have started a thread named [DefaultQuartzScheduler_Worker-1] but has failed to stop it. This is very likely to create a memory leak.
2010-6-7 10:21:16 org.apache.catalina.loader.WebappClassLoader clearReferencesThreads
严重: A web application appears to have started a thread named [DefaultQuartzScheduler_Worker-2] but has failed to stop it. This is very likely to create a memory leak.
2010-6-7 10:21:16 org.apache.catalina.loader.WebappClassLoader clearReferencesThreads
严重: A web application appears to have started a thread named [DefaultQuartzScheduler_Worker-3] but has failed to stop it. This is very likely to create a memory leak.
2010-6-7 10:21:16 org.apache.catalina.loader.WebappClassLoader clearReferencesThreads
严重: A web application appears to have started a thread named [DefaultQuartzScheduler_Worker-4] but has failed to stop it. This is very likely to create a memory leak.
2010-6-7 10:21:16 org.apache.catalina.loader.WebappClassLoader clearReferencesThreads
严重: A web application appears to have started a thread named [DefaultQuartzScheduler_Worker-5] but has failed to stop it. This is very likely to create a memory leak.
2010-6-7 10:21:16 org.apache.catalina.loader.WebappClassLoader clearReferencesThreads
严重: A web application appears to have started a thread named [DefaultQuartzScheduler_Worker-6] but has failed to stop it. This is very likely to create a memory leak.
2010-6-7 10:21:16 org.apache.catalina.loader.WebappClassLoader clearReferencesThreads
严重: A web application appears to have started a thread named [DefaultQuartzScheduler_Worker-7] but has failed to stop it. This is very likely to create a memory leak.
2010-6-7 10:21:16 org.apache.catalina.loader.WebappClassLoader clearReferencesThreads
严重: A web application appears to have started a thread named [DefaultQuartzScheduler_Worker-8] but has failed to stop it. This is very likely to create a memory leak.
2010-6-7 10:21:16 org.apache.catalina.loader.WebappClassLoader clearReferencesThreads
严重: A web application appears to have started a thread named [DefaultQuartzScheduler_Worker-9] but has failed to stop it. This is very likely to create a memory leak.
2010-6-7 10:21:16 org.apache.catalina.loader.WebappClassLoader clearReferencesThreads
严重: A web application appears to have started a thread named [DefaultQuartzScheduler_Worker-10] but has failed to stop it. This is very likely to create a memory leak.
不知道怎么处理一下,我们的项目在服务器上也出现了一样的问题!

解决方案 »

  1.   

    JDBC MYSQL驱动包没有加载进来,或是版本不对吧
      

  2.   

    DefaultQuartzScheduler_Worker-1: 你在用Quartz?检查你配置的定时任务是多少时间间隔的?不会每一秒都在新增运行的进程吧?
      

  3.   

    严重: A web application registered the JBDC driver [com.mysql.jdbc.Driver] but failed to unregister it when the web application was stopped.
    数据库连接是不是开了后就没关闭过连接? ——个人愚见