public void jspInit() - This method is invoked when JspPage is intialised. - This method is called once in the life-time of JSP Page. - To put Jsp in service, jspInit() must get completed successfully.
public void _jspService(HttpServletRequest request, HttpServletResponse response) throwsServletException, IOException - The _jspService() corresponds to the body of JSP page. - This method is defined automatically by the Container & this should not be defined by JSP page author. - This method is called many a times in its life cycle .
public void jspDestroy() - This method is invoked when Jsp Page is about to be destroyed.
JSP Comments - Comments can be used in JSP.
- Two different types of comments are allowed in JSP.