dinesh Archive
The JSP implicit page object is an instance of the java.lang.Object class. It represents the current JSP page. That is, it serves as a reference to the java servlet object that implements the JSP page …
JSP config Object is implicitly available to the developer on Java Server Pages. Config object is useful in getting application configuration values to JSP from web.xml file. Config object has a scope of application. following …
The exception object represents all errors and exceptions. The exception implicit object is of type java.langThrowable. You can access the exception object on a page that you declare to be an error page using the …
The application implicit object is an instance of javax.servlet.ServletContext. It is the broadest context state available. It allows the JSP page’s servlet and any Web components contained in the same application to share information. A …
JSP session Object is implicitly available to the developer on Java Server Pages. Session object is useful in maintaining objects and accessing it values in different JSPs. Session object has a scope of session. Session …
JSP out Object is implicitly available to the developer on Java Server Pages. Out object denotes the Output stream in the context of page. The class or the interface name of the object out is …
JSP Response Object is implicitly available to the developer on Java Server Pages. This object implements javax.servlet.ServletResponse interface. It is useful object in setting response to serve the request. This object has a scope for …