本帖最后由 bobo0706 于 2011-07-08 12:54:19 编辑

解决方案 »

  1.   

    严重: The web application [/MyProject] registered the JDBC driver [oracle.jdbc.driver.OracleDriver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
    这个错误官方的解释是可以忽略,或者换tomcat5,请参见:
    http://stackoverflow.com/questions/3320400/jdbc-driver-unregisted-when-the-web-application-stops严重: The web application [/MyProject] appears to have started a thread named [Timer-1] but has failed to stop it. This is very likely to create a memory leak.这个错误我也有,我也找了好久都没有答案,估计可能是引用的jar包有bug
      

  2.   

    严重: The web application [/MyProject] appears to have started a thread named [Timer-1] but has failed to stop it. This is very likely to create a memory leak.请看:http://stackoverflow.com/questions/5495483/error-when-starting-stopping-tomcat-6-0-29
    跟你的问题相似,可以参考,就是说c3p连接池的bug
      

  3.   

    严重: The web application [/MyProject] appears to have started a thread named [Timer-1] but has failed to stop it. This is very likely to create a memory leak.请参见:http://stackoverflow.com/questions/5495483/error-when-starting-stopping-tomcat-6-0-29
    说是c3p的问题
      

  4.   

    这种错误不用管它,你能正常的停止tomcat就OK了。
      

  5.   

    详细的去logs 下看看当天的日志
      

  6.   

    是不是没有启动配置。
    <!-- 监听器 -->
    <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <!-- 加载applicationContext*.xml 配置 -->
    <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:applicationContext-*.xml</param-value>
    </context-param>