Alan wrote:
> however, the pool of connections are not initiated with the database until
> the first JSP requiring a datasource is requested.

A ServletContextListener?  I have one that loads up some context-wide code
tables into Java objects and sticks them in application scope.

public class MyListener implements ServletContextListener
{
   public void contextInitialized( ServletContextEvent sce )
   { ... }
   public void contextDestroyed( ServletContextEvent sce )
   { ... }
}
 
-- 
Wendy Smoak
Applications Systems Analyst, Sr.
Arizona State University PA Information Resources Management

Reply via email to