| Java FAQ | ||
| JSP FAQ | ||
| Servlet FAQ | ||
XyzWs JSP FAQ:
What are implicit objects in JSP?
Printer-friendly version |
Mail this to a friend
|
Advertisement
|
|||||||||||||||||||||||||||
What are implicit objects in JSP?
Implicit objects are a set of Java objects that the JSP Container makes available to developers in each page.
These objects may be accessed as built-in variables via scripting elements and can also be accessed programmatically by JavaBeans and Servlets.
You may already meet one of these objects already - the The implicit objects are created automatically for you within the service method. Furthermore, as summarized below, each object must adhere to a specific Java class or interface definition.
Note that the implicit variables are only available within the
<%!
public void amethod(){
out.print("Hello");
}
%>
|