How are the implicit object made available in the jsp file? Where are they defined?

Showing Answers 1 - 1 of 1 Answers

There are nine implicit variables in JSP : application ,session,request,response,out,page,pageContext,config,exception

The objects that these variables refer created by servlet container and are call implicit Objects: They are as follows:

ServletContex ,HttpSession ,HttpServletRequest, HttpServetResponse, JspWriter, ServletConfig,Object

In _jspService() method of generated servlet of JSP you can implicity find these variables

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions