| Implicit Variable |
Class |
Description |
Scope |
| page |
java.lang.Object |
Page's servlet instance |
Page |
| config |
javax.servlet.ServletConfig |
Servlet configuration information |
Page |
| out |
javax.servlet.jsp.JSpWriter |
Output stream for page context |
Page |
| request |
javax.servlet.HttpServletRequest |
Data included with the HTTP Request |
request |
| response |
javax.servlet.HttpServletResponse |
HTTP Response data, e.g. cookies |
page |
| session |
javax.servlet.HttpSession |
User specific session data |
sesssion |
| application |
javax.servlet.ServletContext |
Data shared by all application pages |
Application |
| pageContext |
javax.servlet.PageContext |
Provides access to all the namespaces associated with a JSP page and access to several page attributes |
page |
| exception |
java.lang.Throwable |
|
Page |