Please send your Questions & Answers or Feedback to "mohan@javabook.org"

What JSP lifecycle methods can I override?

You cannot override the _jspService() method within a JSP page. You can however, override the jspInit() and jspDestroy() methods within a JSP page. jspInit() can be useful for allocating resources like database connections, network connections, and so forth for the JSP page. It is good programming practice to free any allocated resources within jspDestroy().
Related Posts Plugin for WordPress, Blogger...
Flag Counter