| Author |
Start up class in tomcat
|
Mary Cole
Ranch Hand
Joined: Dec 02, 2000
Posts: 362
|
|
Hi, I have a JAVA class ..not a servlet ...and I want to mak up this class as a start up class in Tomcat5.0.19. How do I do that
|
 |
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12267
|
|
I understand your question to be: how to create an instance of a Java class when Tomcat is started. Tomcat will automatically create instances of servlets that are marked with a web.xml entry like: see the entry for the default servlet in conf/web.xml for an example. You can have then have the servlet init method create an instance of the class. If that is not what you mean, please explain what this class is for. Bill
|
 |
 |
|
|
subject: Start up class in tomcat
|
|
|