1.

Define The Implicit Object?

Answer»

JSP IMPLICIT OBJECTS are those Java objects that the JSP Container makes available to developers in every PAGE. A developer can able to CALL them directly, without being explicitly declared. JSP Implicit Objects are also known as pre-defined variables. The following objects are considered implicit in a JSP page:
• application
• page
• request
• response
• session
• exception
• out
• config
• pageContext

JSP implicit objects are those Java objects that the JSP Container makes available to developers in every page. A developer can able to call them directly, without being explicitly declared. JSP Implicit Objects are also known as pre-defined variables. The following objects are considered implicit in a JSP page:
• application
• page
• request
• response
• session
• exception
• out
• config
• pageContext



Discussion

No Comment Found