top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is meant by implicit objects in JSP and what are they ?

+2 votes
201 views
What is meant by implicit objects in JSP and what are they ?
posted Jan 21, 2015 by Shyam

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
 
Best answer

JSP implicit objects are those Java objects that the JSP Container makes available to developers in each page. A developer can call them directly, without being explicitly declared. JSP Implicit Objects are also called pre-defined variables.

The following objects are considered implicit in a JSP page:

  application
  page
  request
  response
  session
  exception
  out
  config
  pageContext
answer Jan 22, 2015 by Karthick.c
...