will the
thread be availabe even if the server gets stopped?
actullay i am running my application on websphere server 6.0.i am using three thread classes.The problem is the server is getting stopped after two threads got finished.
In my servet ,i have coded like,
t1.start();
t2.start();
t3.start();
t2.join();
t2.notify();
i want the third thread to be run after t1,t2 finished running.
t2.join();
t2.notify();
and made the t3 waiting..but the application server gets stopped..
1.is it possible to restart the server,is there any code?
2.will the thread t3 be alive even after the server gets stoped?.
can anyone give me an idea on how to solve this issue?..