The 3 life cycle methods in a JSP page are:
A JSP gets converted into a Servlet for execution and hence the methods in a JSP are similar to the ones in a Servlet.Scriptlets and Expressions will end up in the body of doGet or doPostDeclarations will end up as instance variablesjspInit() and jspDestroy() will get translated to Servlet's init() and destroy() methods
JSP actions are XML tags that direct the server to use existing components or control the behavior of the JSP engine. JSP Actions consist of a typical (XML-based) prefix of "jsp" followed by a colon, followed by the action name followed by one or more attribute parameters. There are six JSP Actions: < jsp : include / > < jsp : forward / > < jsp : plugin / > < jsp : usebean / > < jsp : setProperty / > < jsp : getProperty / >
jsp means Java Server Pages.
The implicit objects in a JSP page are:requestresponsepageContextsessionapplicationoutconfigpage
The session variables can be accessed in a jsp page from the request object. Note: Accessing session contents in JSP is not a good design practice
A JSP gets converted into a Servlet for execution and hence the methods in a JSP are similar to the ones in a Servlet.Scriptlets and Expressions will end up in the body of doGet or doPostDeclarations will end up as instance variablesjspInit() and jspDestroy() will get translated to Servlet's init() and destroy() methods
jspInit()jspDestroy()jspService
You cannot override the jspService() method but you can override the jspInit() and jspDestroy() methods
JSP actions are XML tags that direct the server to use existing components or control the behavior of the JSP engine. JSP Actions consist of a typical (XML-based) prefix of "jsp" followed by a colon, followed by the action name followed by one or more attribute parameters. There are six JSP Actions: < jsp : include / > < jsp : forward / > < jsp : plugin / > < jsp : usebean / > < jsp : setProperty / > < jsp : getProperty / >
JSP stands for Java Server Pages
can i get update coding in jsp??
JSP Records was created in 1978.
jsp means Java Server Pages.
JSP stands for Java Server Pages
There are many websites for JSP Tutorials. Just google with text as "JSP Tutorials" or click on the related links in this answer...
JSP and HTML are similar in some way or other. JSP is one which has work on Java Programming as well.
The implicit objects in a JSP page are:requestresponsepageContextsessionapplicationoutconfigpage