Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What JSP lifecycle methods can I override?
What JSP lifecycle methods can I override?
✍: Guest
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().
The jspInit() and jspDestroy() methods are each executed just once during the lifecycle of a JSP page and are typically declared as JSP declarations:
2013-07-24, 2328👍, 0💬
Popular Posts:
What is the difference between mysql_fetch_object() and mysql_fetch_array() functions in PHP? mysql_...
If we have the following in a Java code: String s="abc"; String s2="abc"; Then what will be output o...
What is difference between custom JSP tags and JavaBeans? Custom JSP tag is a tag you defined. You d...
What will be printed as the result of the operation below: main() { int a=0; if (a==0) printf("Cisco...
What Does a HTML Document Look Like? A HTML document is a normal text file with predefined tags mixe...