Tomcat Startup Hitting Webpage

2008-01-09 Thread Troy Davidson
Ok, I'm sure I read this somewhere but can't find it. I have a few apps that need to have threads started when Tomcat starts. Isn't there a way to tell Tomcat to hit the addresses of these apps to start them up when Tomcat starts up? I've searched everywhere and can't find anything. Not

RE: Tomcat Startup Hitting Webpage

2008-01-09 Thread Caldarale, Charles R
From: Troy Davidson [mailto:[EMAIL PROTECTED] Subject: Tomcat Startup Hitting Webpage I have a few apps that need to have threads started when Tomcat starts. Read the servlet spec, especially the section on lifecycle listeners. Make sure you terminate the threads when the webapp

Re: Tomcat Startup Hitting Webpage

2008-01-09 Thread Troy Davidson
:[EMAIL PROTECTED] Subject: Tomcat Startup Hitting Webpage I have a few apps that need to have threads started when Tomcat starts. Read the servlet spec, especially the section on lifecycle listeners. Make sure you terminate the threads when the webapp is shutting down. - Chuck