Programming Tutorials

What are the life-cycle methods of JSP?

By: Karthik in Interview Tutorials on 2012-06-16  

Answer: Life-cycle methods of the JSP are:

  1. jspInit(): The container calls the jspInit() to initialize the servlet instance. It is called before any other method, and is called only once for a servlet instance.
  2. _jspService(): The container calls the _jspservice() for each request and it passes the request and the response objects. _jspService() method cann't be overridden. 
  3. jspDestroy(): The container calls this when its instance is about to destroyed.

The jspInit() and jspDestroy() methods can be overridden within a JSP page.






Add Comment

* Required information
1000

Comments

No comments yet. Be the first!

Most Viewed Articles (in Interview )

What is difference between Java Bean and Enterprise Java Bean?

What are the call back methods in Session bean?

What do you understand by a container in J2EE?

What is the difference between Session Bean and Entity Bean?

Interview Question: What is the difference between JavaBean and EJB?

Interview Question: What is the difference between find and select methods in EJB?

Differentiate between .ear, .jar and .war files.

Interview Question: Where can I get help with Struts?

What is the difference between jsp:include page and @ include file?

What is the difference between jsp:forward and response.sendRedirect(url)

Question: Difference between forward and sendRedirect in JSP?

What are the life-cycle methods of JSP?

Question: What is an output comment in JSP?

Question: What is a Hidden Comment in JSP?

The output of System.out.println(5<<2) in Java

Latest Articles (in Interview)