7

我们在 tomcat 6 中使用 Oracle UCP 驱动程序(Oracle 通用连接池)。它或多或少像 Oracles Howto中的配置。问题是驱动程序启动了很多线程(Thread-0 到 57,UCP-worker-thread-1 到 24),这些线程在服务器关闭时并未停止 - tomcat 会发出大量错误消息,如下所示:

Web 应用程序 [/xxx] 似乎已经启动了一个名为 [Timer-17] 的线程,但未能停止它。这很可能造成内存泄漏。

知道如何处理吗?

4

1 回答 1

3

我有同样的问题,并设法通过在我的添加以下代码来解决这个问题ServletContextListener

import oracle.ucp.admin.UniversalConnectionPoolManager;
import oracle.ucp.admin.UniversalConnectionPoolManagerImpl;

public class MyContextListener implements ServletContextListener {
    /* ... */

    @Override
    public void contextDestroyed(ServletContextEvent sce) {
        // Your shutdown sequence here
        /* ... */

        // Shutdown UCP if present, to avoid warnings about thread leaks
        UniversalConnectionPoolManager ucpManager = UniversalConnectionPoolManagerImpl.getUniversalConnectionPoolManager();
        if (ucpManager != null) {
            String[] poolNames = ucpManager.getConnectionPoolNames();
            if (poolNames != null) {
                for (String poolName : poolNames) {
                    ucpManager.destroyConnectionPool(poolName);
                }
            }
        }
    }

}
于 2013-08-28T13:03:57.353 回答