140141142143144145146147148
Set cacheKeys = dsCache.keySet(); Iterator i = cacheKeys.iterator(); while (i.hasNext()) { String helperName = (String) i.next(); StandardXAPoolDataSource pds = (StandardXAPoolDataSource) dsCache.remove(helperName); pds.shutdown(true); } } }
139140141142143144145146147