gpt4 book ai didi

mysql - Web 应用程序 [] 似乎已经启动了一个名为 [Abandoned connection cleanup thread] com.mysql.jdbc.AbandonedConnectionCleanupThread 的线程

转载 作者:IT老高 更新时间:2023-10-28 13:48:10 31 4
gpt4 key购买 nike

在我的网络开发过程中,我刚刚在我的 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 是对的“别担心”的答案是不够的。这个警告让我很困扰,因为它可能会给我带来一些 future 的持久性问题,这让我很担心,我尝试了 OP 编写的代码,但我遇到了问题什么库 我应该用它来使这段代码工作吗?这就是我到目前为止所得到的..

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,谢谢你的帮助,

最佳答案

this answer .似乎 MySQL 驱动程序应该在应用程序之间共享的 {$TOMCAT]/lib 中。检查您是否没有将其包含在每个应用程序中。至少它对我有用,并且我已经能够删除警告。

如果您使用 Maven,请将依赖项标记为提供。


更新:
根本原因是 Tomcat 在垃圾收集驱动程序方面存在问题,因为它注册在多个应用程序通用的单例中。关闭一个应用程序不允许 Tomcat 释放驱动程序。看到这个answer .

关于mysql - Web 应用程序 [] 似乎已经启动了一个名为 [Abandoned connection cleanup thread] com.mysql.jdbc.AbandonedConnectionCleanupThread 的线程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25699985/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com