| Author |
how to call destroy() method ?
|
sameera liyanage
Ranch Hand
Joined: Nov 25, 2008
Posts: 639
|
|
how the container identify which servlet instance to call destroy() method ?
|
 |
Anirvan Majumdar
Ranch Hand
Joined: Feb 22, 2005
Posts: 261
|
|
|
The container doesn't select any particular servlet to call the destroy() method on. It will call the destroy() method on all live instances of servlets that are present.
|
 |
Nishan Patel
Ranch Hand
Joined: Sep 07, 2008
Posts: 676
|
|
Finally, when the servlet is about to be removed from memory, the container calls its destroy() method.
and that is servlet one last chance to clean up resources.
|
Thanks, Nishan Patel
SCJP 1.5, SCWCD 1.5, OCPJWSD Java Developer,My Blog
|
 |
 |
|
|
subject: how to call destroy() method ?
|
|
|