I have a static method that starts a thread with a class that does some clean-up tasks.
public static void init(){
Thread t = new Thread( new ClearUserHashMapClient() );
t.start();
}//init
How can I configure my webapp to call this init() method when I deploy my
war file on Tomcat.
Thanks,
Chandra.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
