Explain the various implicit objects that are available?
Object | Class or Interface | Description |
| | |
|
| Page's servlet instance |
|
| Servlet configuration information |
|
| Provides access to all the namespaces associated with a JSP page and access to several page attributes |
|
| Data included with the HTTP Request |
|
| HTTP Response data, e.g. cookies |
|
| Output stream for page context |
|
| User specific session data |
|
| Data shared by all application pages |
The application
, session
and request
implicit objects have the additional ability to hold arbitrary values. By setting and getting attribute values these objects are able to share information between several JSP pages.
0 Comments:
Post a Comment
<< Home