- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What implicit objects are supported by JSP?
Following table lists out the nine Implicit Objects that JSP supports −
Sr.No. | Object & Description |
---|---|
1 | request This is the HttpServletRequest object associated with the request. |
2 | response This is the HttpServletResponse object associated with the response to the client. |
3 | out This is the PrintWriter object used to send output to the client. |
4 | session This is the HttpSession object associated with the request. |
5 | application This is the ServletContext object associated with the application context. |
6 | config This is the ServletConfig object associated with the page. |
7 | pageContext This encapsulates use of server-specific features like higher performance JspWriters. |
8 | page This is simply a synonym for this, and is used to call the methods defined by the translated servlet class. |
9 | Exception The Exception object allows the exception data to be accessed by designated JSP. |
- Related Articles
- What is the out implicit object in JSP?
- Built-in functions supported by dictionary view objects
- What are common HTML Events supported by JavaScript?
- What are the methods supported by W3C DOM?
- What are the escape sequences supported by C#?
- What are the data types supported by JDBC?
- What are the document methods supported by Legacy DOM?
- What are the transaction isolation levels supported by JDBC API?
- What are the parameters supported by Get-ChildItem in PowerShell?
- Types of graphics are supported by HTML5?
- What are the different types of conditional statements supported by C#?
- What are implicit type conversions in C#?
- What are the MySQL Supported Platforms?
- What are JSP comments?
- What are JSP Directives?

Advertisements