【发布时间】:2014-10-31 05:45:31
【问题描述】:
在我的网络开发过程中,我刚刚在我的 Eclipse IDE 中关闭了我的网络应用程序,大约一分钟后,我刚刚在我的 Eclipse 控制台中看到了一个 WARNING。
WARNING: The web application [/Spring.MVC] registered the JDBC 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.
Sep 06, 2014 8:31:55 PM org.apache.catalina.loader.WebappClassLoader clearReferencesThreads
WARNING: The web application [/Spring.MVC] appears to have started a thread named [Abandoned connection cleanup thread] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
java.lang.Object.wait(Native Method)
java.lang.ref.ReferenceQueue.remove(Unknown Source)
com.mysql.jdbc.AbandonedConnectionCleanupThread.run(AbandonedConnectionCleanupThread.java:40)
Sep 06, 2014 8:32:00 PM org.apache.catalina.core.ApplicationContext log
INFO: No Spring WebApplicationInitializer types detected on classpath
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
Sep 06, 2014 8:32:00 PM org.apache.catalina.core.ApplicationContext log
INFO: Initializing Spring root WebApplicationContext
Sep 06, 2014 8:32:03 PM org.hibernate.jpa.internal.util.LogHelper logPersistenceUnitInformation
INFO: HHH000204: Processing PersistenceUnitInfo [
name: personPU
...]
到目前为止,它没有造成任何内存泄漏,我检查了我的 VisualVM,一切正常,但是当我更多地搜索这个东西时,我意识到这个警告是由于 MySQL 驱动程序没有释放资源或没有被关闭引起的正确(我不知道如何准确地说),我最终在 SO related issue 发表这篇文章
OP 是对的“别担心”的答案是不够的。这个警告让我很困扰,因为它可能会给我带来一些未来的持久性问题,这让我很担心,我尝试了 OP 编写的代码,但我遇到了问题 what Libraries 我应该用它来使这段代码工作吗?这就是我到目前为止所得到的..
import java.sql.Driver;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.util.Enumeration;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
import javax.servlet.annotation.WebListener;
import org.hibernate.annotations.common.util.impl.LoggerFactory;
import com.mysql.jdbc.AbandonedConnectionCleanupThread;
@WebListener
public class ContextFinalizer implements ServletContextListener {
private static final Logger LOGGER = LoggerFactory.getLogger(ContextFinalizer.class);
public void contextInitialized(ServletContextEvent sce) {
}
public void contextDestroyed(ServletContextEvent sce) {
Enumeration<Driver> drivers = DriverManager.getDrivers();
Driver d = null;
while (drivers.hasMoreElements()) {
try {
d = drivers.nextElement();
DriverManager.deregisterDriver(d);
LOGGER.warn(String.format("Driver %s deregistered", d));
}
catch (SQLException ex) {
LOGGER.warn(String.format("Error deregistering driver %s", d), ex);
}
}
try {
AbandonedConnectionCleanupThread.shutdown();
}
catch (InterruptedException e) {
logger.warn("SEVERE problem cleaning up: " + e.getMessage());
e.printStackTrace();
}
}
}
我只是想知道我需要什么库,或者如果我使用正确的库来正确实现这一点,我什至不知道我应该使用什么 Logger,谢谢你的帮助,
【问题讨论】:
-
解决方案不需要记录器。你运行你的代码了吗?发生了什么?您仍然看到警告吗?
-
感谢您的回复,我无法运行它,我不知道此代码不需要记录器,我只是在尝试之前重新启动了计算机,我会回帖以防发生不同的事情。谢谢。 :)
-
@SotiriosDelimanolis,我刚刚尝试完上面的示例代码,没有记录器(谢谢),是的,它正在工作,
AbandonedConnectionCleanupThread正在关闭,但是,因为我正在监视服务器在我的 VisualVM 中,permgen 空间仍然被占用,我仍然会出现内存泄漏,我仍然需要手动执行GC。但至于代码,是的,它正在工作。
标签: mysql spring jdbc memory-leaks