Description
Conceptual
figure
Table | Object | Package | Scope |
|---|---|---|
| application | Javax.servlet.ServletContext | Web application scope |
| exeption | Javax.servlet.Throwable | page scope |
| page | This(current class object reference) | page scope |
| config | Javax.servlet.ServletConfig | Page Scope |
| out | javax.servlet.jsp.jspwriter | page scope |
| pagecontext | java.servlet.jsp.PageContext | page scope |
| session | javax.servlet.http.HttpSession | Session scope |
| request | javax.servlet.http.HttpServletRequest | Request scope |
| response | javax.servlet.hht.HttpServletRespons | Response scope |
Description
Example
Key Points