9 Implicit Objects
JSP Exception
In JSP, exception is an implicit object of type java.lang.Throwable class. This object can be used to print the exception. But it can only be…
JSP pageContext
In JSP, pageContext is an implicit object of type PageContext class.The pageContext object can be used to set,get or remove attribute from one of the…
JSP session
In JSP, session is an implicit object of type HttpSession.The Java developer can use this object to set,get or remove attribute or to get session…
JSP application
In JSP, application is an implicit object of type ServletContext. The instance of ServletContext is created only once by the web container when application or…
JSP config
In JSP, config is an implicit object of type ServletConfig. This object can be used to get initialization parameter for a particular JSP page. The…
JSP response
In JSP, response is an implicit object of type HttpServletResponse. The instance of HttpServletResponse is created by the web container for each jsp request. It…
JSP request
The JSP request is an implicit object of type HttpServletRequest i.e. created for each jsp request by the web container. It can be used to…
JSP Implicit Objects
There are 9 jsp implicit objects. These objects are created by the web container that are available to all the jsp pages. The available implicit…