Answer Posted / lakshya mathur
JSP Implicit Objects are the Java objects that the JSP Container makes available to developers in each page and developer can call them directly without being explicitly declared. JSP Implicit Objects are also called pre-defined variables.
JSP supports nine Implicit Objects which are listed below:
Object Description
request This is the HttpServletRequest object associated with the request.
response This is the HttpServletResponse object associated with the response to the client.
out This is the PrintWriter object used to send output to the client.
session This is the HttpSession object associated with the request.
application This is the ServletContext object associated with application context.
config This is the ServletConfig object associated with the page.
pageContext This encapsulates use of server-specific features like higher performance JspWriters.
page This is simply a synonym for this, and is used to call the methods defined by the translated servlet class.
Exception The Exception object allows the exception data to be accessed by designated JSP.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How can a thread safe JSP page be implemented?
Explain the difference between include directive and include action in jsp?
What are the implicit, internal el jsp objects and their differences from jsp objects?
Why are implicit objects not available in a regular jsp page?
What is the differences between the jsp custom tags and java beans?
What is out println in jsp?
Can you disable the caching on the back button of a particular browser?
Why jsp is faster than servlet?
Which attribute specifies a jsp page that should process any exceptions thrown but not caught in the current page? : Citibank
What is difference between page and pagecontext in jsp?
What are jsp declarations?
Give the syntax for jsp comments.
What is the purpose of
What is meant by session management?
What is translation phase?