| Author |
Can i use finalize method instead of destroy in servlets
|
Aadi Jampani
Greenhorn
Joined: Jul 04, 2005
Posts: 1
|
|
Hi Everybody, Can any please answer me for the fallowing questions. 1.can i use finalize method insted of destroy method? 2.In which instances the destroy method ll be called? Thnx in advance.....
|
 |
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12327
|
|
Nothing prevents you from writing a finalize() in a servlet class. The preferred approach to cleaning up when a servlet goes out of service is the destroy method - see the servlet API. Anybody seriously interested in servlets should have a copy of the API. You can download it for free from this Sun site. The idea is that the servlet container will call your servlet's destroy method when the servlet instance is about to be removed - possibly as part of orderly shutdown of the server, possibly for some other reason. Since you are NOT guaranteed that GC will run during server shutdown, finalize is a bad choice. Bill
|
Java Resources at www.wbrogden.com
|
 |
 |
|
|
subject: Can i use finalize method instead of destroy in servlets
|
|
|