Browse Today's favorites or All time favorites.
Please Sign In or Register to share and submit your questions.
Java Queries
Complete java interview questions library
Home » Interview Questions » JSP Interview Questions » Explain the life cycle methods of a JSP?
Explain the life cycle methods of a JSP?
- JSPs Pre-translated: Before the JSP file has been translated and compiled into the Servlet.
- JSPs Translated: The JSP file has been translated and compiled as a Servlet.
- Initialized: Prior to handling the requests in the service method the container calls the jspInit() to initialize the Servlet. Called only once per Servlet instance.
- Servicing: Services the client requests. Container calls this method for each request.
- Out of service: The Servlet instance is out of service. The container calls the jspDestroy() method.
Make a good first impression during an office interview
- important to be punctual and arrive a few minutes early.
- Confirm directions or drive to the location on the previous day to ensure you know where you are going.
- Put your best foot forward. Dress appropriately for the position you are seeking.
Write a comment