org.apache.catalina.loader.WebappClassLoader clearReferencesJdbc

news/2024/7/24 4:49:44 标签: mysql, 异常
异常信息如下:

2010-2-4 11:53:55 org.apache.catalina.startup.HostConfig checkResources
信息: Reloading context [/ssh]
2010-2-4 11:53:55 org.apache.catalina.core.ApplicationContext log
信息: Closing Spring root WebApplicationContext
2010-2-4 11:53:55 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-2-4 11:53:55 org.apache.catalina.loader.WebappClassLoader clearThreadLocalMap

严重: A web application created a ThreadLocal with key of type [null] (value [com.opensymphony.xwork2.inject.ContainerImpl$10@12c937c]) and a value of type [java.lang.Object[]] (value [[Ljava.lang.Object;@186dd93]) but failed to remove it when the web application was stopped. To prevent a memory leak, the ThreadLocal has been forcibly removed.
2010-2-4 11:53:55 org.apache.catalina.loader.WebappClassLoader clearThreadLocalMap

严重: A web application created a ThreadLocal with key of type [org.springframework.core.NamedThreadLocal] (value [Prototype beans currently in creation]) and a value of type [null] (value [null]) but failed to remove it when the web application was stopped. To prevent a memory leak, the ThreadLocal has been forcibly removed.
2010-2-4 11:53:55 org.apache.catalina.loader.WebappClassLoader clearThreadLocalMap
严重: A web application created a ThreadLocal with key of type [null] (value [com.sun.faces.config.ConfigureListener$1@13d0fea]) and a value of type [null] (value [null]) but failed to remove it when the web application was stopped. To prevent a memory leak, the ThreadLocal has been forcibly removed.
2010-2-4 11:53:55 org.apache.catalina.loader.WebappClassLoader clearThreadLocalMap
严重: A web application created a ThreadLocal with key of type [null] (value [com.opensymphony.xwork2.inject.ContainerImpl$10@12c937c]) and a value of type [java.lang.Object[]] (value [[Ljava.lang.Object;@1dffb78]) but failed to remove it when the web application was stopped. To prevent a memory leak, the ThreadLocal has been forcibly removed.
2010-2-4 11:53:55 org.apache.catalina.loader.WebappClassLoader clearThreadLocalMap
严重: A web application created a ThreadLocal with key of type [org.springframework.core.NamedThreadLocal] (value [Actual transaction active]) and a value of type [null] (value [null]) but failed to remove it when the web application was stopped. To prevent a memory leak, the ThreadLocal has been forcibly removed.
2010-2-4 11:53:55 org.apache.catalina.loader.WebappClassLoader clearThreadLocalMap
严重: A web application created a ThreadLocal with key of type [null] (value [com.opensymphony.xwork2.inject.ContainerImpl$10@12c937c]) and a value of type [java.lang.Object[]] (value [[Ljava.lang.Object;@1f6ae4d]) but failed to remove it when the web application was stopped. To prevent a memory leak, the ThreadLocal has been forcibly removed.
2010-2-4 11:53:55 org.apache.catalina.loader.WebappClassLoader clearThreadLocalMap

严重: A web application created a ThreadLocal with key of type [org.springframework.core.NamedThreadLocal] 

解决办法可参考http://forum.springsource.org/showthread.php?87335-Failure-to-unregister-the-MySQL-JDBC-Driver

把JDBC驱动复制到tomcat/lib 目录下


当项目没有stop时,redeploy产生的问题


http://www.niftyadmin.cn/n/1466606.html

相关文章

Excel.Application使用手册(API)

Excel.Application使用手册 定制模块行为 (1) Option Explicit 强制对模块内所有变量进行声明 Option Private Module 标记模块为私有,仅对同一工程中其它模块有用,在宏对话框中不显示 Option Compare Text 字符串不区分大小写 Option Base 1 指定数组的…

如何安装sap HANA studio并连接到学习机(91ABAP SAP HANA学习机)--开放的SAP HANA学习机

如何安装sap HANA studio并连接到学习机(91ABAP SAP HANA学习机):此学习机由克米亚团队与91ABAP合作,免费对外开放。 SAP HANA Studio 下载链接: 1.克米亚SAP HANA Studio 下载链接: http://www.kemiya.net/thread-24528-1-1.html…

SAP HANA HDB序列的使用方法及技巧(SAP HANA HDB SEQUENCE )

SAP HANA HDB序列的使用方法及技巧(SAP HANA HDB SEQUENCE): 创建序列&#xff1a; 语法&#xff1a;CREATE SEQUENCE <sequence_name> [<common_sequence_parameter_list>] [RESET BY <subquery>] <sequence_name> :: <identifier> <common…

SAP-HANA快速创建序列

--创建序列CREATE SEQUENCE Z_SERVICE_LOG_SEQ INCREMENT BY 1 MAXVALUE 99999999 MINVALUE 1 CYCLE;--获取下一个序列SELECT Z_SERVICE_LOG_SEQ.NEXTVAL FROM DUMMY;--删除序列DROP SEQUENCE Z_SERVICE_LOG_SEQ;

SAP HANA学习资料大全[非常完善的学习资料汇总]

SAP HANA学习资料大全[非常完善的学习资料汇总] Check out this SDN blog if you plan to write HANA Certification exam http://scn.sap.com/community/hana-in-memory/blog/2012/08/27/my-experience-on-hana-certification Videos available at HANA Academy http://www.sa…

SAP HANA 使用HANA Studio 导入CSV文件

SAP HANA 使用HANA Studio 导入CSV文件

SAP HANA存储过程样例(Table Type输出)

SAP HANA存储过程样例&#xff08;Table Type输出&#xff09; CREATE PROCEDURE getOutput( IN cnt INTEGER, IN currency VARCHAR(3), OUT output_pubs tt_publishers, OUT output_year tt_year) LANGUAGE …

SAP HANA如何在存储过程中使用自定义的table type

SAP HANA如何在存储过程中使用自定义的table type 首先定义local table type&#xff1a; CREATE TYPE <type_name> AS TABLE (<column_definition>[{,<column_definition>}...]) 在定义存储过程时类似如下使用&#xff1a; CREATE PROCEDURE <procedure_…