Recent Articles
Add jsp_precompile as a request parameter and send a request to the JSP file. This will make the jsp pre-compile. Why it is mentioned as pre ...
May 21st, 2009
The availability of a JSP object for use from a particular place of the application is defined as the scope of that JSP object. Every object ...
June 10th, 2008
forward Control can be forward to resources available within the server from where the call is made. This transfer of control is done by the ...
May 13th, 2008
There is only one type of JSP comment available by JSP specification. JSP Comment Syntax: <%-- comment --%> This JSP comment tag tells ...
May 13th, 2008
JSP Implicit objects are created by the web container. These implicit objects are Java objects that implement interfaces in the Servlet and ...
May 11th, 2008
<%@ include file=”filename” %> is the JSP include directive. At JSP page translation time, the content of the file given i ...
May 9th, 2008
JSP contains three life cycle methods namely jspInit( ), _jspService() and jspDestroy(). In these, jspInit() and jspDestroy() can be overrid ...
May 5th, 2008
JSP’s life cycle can be grouped into following phases. 1. JSP Page Translation: A java servlet file is generated from the JSP source f ...
May 5th, 2008