Implicit objects in JSP
There are 9 Implicit Objects in JSP.
1. request Object
2. response Object
3. out Object
4. page Object
5. pageContext Object
6. config Object
7. application Object
8. session Object
9. exception Object
Why do we call them as JSP implicit objects?
Above mentioned 9 objects are known as implicit objects in JSP. The reason is we do not need to initiate these objects. The JSP container automatically initiates these objects while writing the script content in the scriptlet and expressions.
We will know about each implicit objects one by one in this tutorials.