After an object of Servlet is created, it will stay in server until the server down? Or there are some cases that the object will be deleted? Thanks
ersin eser
Ranch Hand
Joined: Feb 22, 2001
Posts: 1072
posted
0
Whenever the servlet container determines that a servlet should be unloaded, perhaps to reclaim some resources or because it is being shutdown, the server calls the servlets's destroy method after allowing all of the servlet's service() threads to complete ( or a server-defined time-limit) The servlet is then eligible for a GC. The servlet container is not required to keep a servlet loaded for any specific amount of time.
dylan shen
Greenhorn
Joined: Oct 20, 2001
Posts: 10
posted
0
I see Thanks for your help
subject: When will the instance of Servlet be deleted?