I'm using Tomcat's connection pooling feature with Ibatis's SQLMap to manage database access in my application. Does anyone know of a way to close the connections in the connection pool without restarting Tomcat? I want to drop all the existing connections in the pool when the application is reloaded by implementing this in ServletContextListener's contextDestroyed() method, but I can't figure out a way to retrieve the connections.
---- Lucie

