sql >> Database >  >> RDS >> Oracle

Oracle UCP-stuurprogramma en kater:threads stoppen niet

Ik had hetzelfde probleem en heb dit opgelost door de volgende code toe te voegen aan mijn 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);
                }
            }
        }
    }

}



  1. Hoe MySQL volledig van Ubuntu te verwijderen?

  2. Probleem met verbindingsreeks in webconfiguratiebestand

  3. Postgres nu() vs 'nu' in functie

  4. MySQL-query mislukt vanwege gereserveerd zoekwoord?