Implicit objects of jsp are available in destroy() method or not?

This question is related to Oracle Interview

Showing Answers 1 - 3 of 3 Answers

No the implicit objects of JSP are not available in destroy() method.
The destroy method is invoked by the container when a JSP page is about to be destroyed.It can be overridden by a page author to perform any cleanup operation such as closing a database connection,where as Implicit objects are java objects which JSp container provides developer to directly use in JSP page without needs to declare or initiating these objects.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions