Implicit Objects in JSP Pages

Q

What are the implicit objects in JSP pages?

✍: FYICENTER.com

A

Implicit objects are objects that are created by the web container and contain information related to a particular request, page, or application. They are:

  • request
  • response
  • pageContext
  • session
  • application
  • out
  • config
  • page
  • exception

2007-04-03, 4536👍, 0💬