Please enable JavaScript.
Coggle requires JavaScript to display documents.
9 JSP IMPLICIT OBJECT (REQUEST (maybe used in the same way as the javax…
9 JSP IMPLICIT OBJECT
RESPONSE
used in the same way as the javax.servlet.http.HTTPServletResponse parameter is used service() method
REQUEST
maybe used in the same way as the javax.servlet.http.HttpServletRequest parameter used in the service() method
parameter to a page GET,PUT or POST type request can print out using the getParameter method
-
-
-
EXCEPTION
available only to JSP pages that declare themselves as error pages, <%page isErrorPage="true"%>
-
-
SESSION
can store and retrieve session data and provide the reference of client's javax.servlet.http.Http Session object