| Author |
garbage collection in JSP
|
Shuaib Gill
Ranch Hand
Joined: May 29, 2001
Posts: 62
|
|
|
How do you delete objects in a JSP page? Is there a destroy() method you could use? Sample code would be very helpful...
|
programmer77
|
 |
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12269
|
|
Unless you are talking about objects that get system resources other than memory, such as database connections or graphics contexts, all you have to do is ensure there are no references to the object. GC will take care of it. This is just basic Java - are people trying to do JSP without the basics of Java? Bill ------------------ author of:
|
Java Resources at www.wbrogden.com
|
 |
 |
|
|
subject: garbage collection in JSP
|
|
|