Wednesday, November 11, 2009

Implicit Objects in jsp

Variable
Class
Description
application
The context for the JSP page's servlet and any Web components contained in the same application. See Accessing the Web Context.
config
Initialization information for the JSP page's servlet.
exception
Accessible only from an error page. See Handling Errors.
out
The output stream.
page
The instance of the JSP page's servlet processing the current request. Not typically used by JSP page authors.
pageContext
The context for the JSP page. Provides a single API to manage the various scoped attributes described in Using Scope Objects .
This API is used extensively when implementing tag handlers (see Tag Handlers).
request
The request triggering the execution of the JSP page. See Getting Information from Requests.
response
The response to be returned to the client. Not typically used by JSP page authors.
session
The session object for the client. See Maintaining Client State.

1 comments:

Unknown said...

Thanks for such a nice info

Post a Comment