✔ JSP CHAPTERS:-
1. JSP Overview
2. JSP Hello World Example
3. JSP Scriplet Tag
4. JSP Declaration Tag
5. JSP Expression Tag
6. JSP Comment Tag
7. JSP Directives
8. JSP Implicit Objects
9. JSP Action Tags
10. Exception Handling
11. JSP Expression Language
1. JSP Overview
2. JSP Hello World Example
3. JSP Scriplet Tag
4. JSP Declaration Tag
5. JSP Expression Tag
6. JSP Comment Tag
7. JSP Directives
8. JSP Implicit Objects
9. JSP Action Tags
10. Exception Handling
11. JSP Expression Language
JSP Directives :Previous Next: JSP Action Tags
JSP Directives :Previous Next: JSP Action Tags
JSP implicit objects
JSP implicit objects are created by web container in the translation phase. These objects are created inside the service method so can be used in scriplet tag without any explicitly declaration and initialization. These objects are also known as pre-defined variables.
JSP implicit objects are 9 and given below:
- 1. out (JspWriter).
- 2. request (HttpServletRequest).
- 3. response (HttpServletResponse).
- 4. config (ServletConfig).
- 5. application (ServletContext).
- 6. session (HttpSession).
- 7. pageContext (PageContext).
- 8. page (Object).
- 9. exception (Throwable).
JSP Directives :Previous Next: JSP Action Tags