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

How can I override the jspInit() and jspDestroy() methods within a JSP page?


The jspInit() and jspDestroy() methods are each executed just once during the lifecycle of a JSP page and are typically declared as JSP declarations:
<%!
public void jspInit() {
. . .
}
%>
<%!
public void jspDestroy() {
. . .
}
%>

Related Posts Plugin for WordPress, Blogger...
Flag Counter