What are implicit objects?

Answers were Sorted based on User's Feedback



What are implicit objects?..

Answer / janet

To simplify code in JSP expressions and scriptlets, we can
use eight automatically defined variables, called implicit
objects.
They are
request,response,out,session,application,config,pageContext
and page.

Is This Answer Correct ?    40 Yes 10 No

What are implicit objects?..

Answer / vipin

one more implicit object availbale in JSP: exception

Is This Answer Correct ?    23 Yes 6 No

What are implicit objects?..

Answer / siva kumar

implicit objects are objects which can be used in jsp
without declaring those objects.For Ex we are using 'out'
implicit object without declaring it,but internally it is
declared in a servlet which is created for jsp. Totally we
hav 10 implicit objects.we can use these implicit objects in
either scriptlets or expressions only.if we want to use
implcit objects in declarations we need to pass explicitily.

Is This Answer Correct ?    20 Yes 6 No

What are implicit objects?..

Answer / ganesh

Implicit object means with out any declaration we able to
use those variables in jsp tags except in jsp declaration
tags.In jsp's total 9 implicit objects are available.Those
are,
1>out
2>request
3>response
4>application
5>session
6>pageContext
7>page
8>exception
9>config

Is This Answer Correct ?    15 Yes 1 No

What are implicit objects?..

Answer / java

There are Eight different types they are.......
request,
response,
out,
session,
application,
config,
pageContext,
page.

Is This Answer Correct ?    22 Yes 11 No

What are implicit objects?..

Answer / anil nivargi

Please go through this blog
http://adnjavainterview.blogspot.in/2014/07/what-are-implicit-objects-in-jsp.html
explained clearly..

Is This Answer Correct ?    1 Yes 0 No

What are implicit objects?..

Answer / lakshya mathur

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

JSP supports nine Implicit Objects which are listed below:

Object Description
request This is the HttpServletRequest object associated with the request.
response This is the HttpServletResponse object associated with the response to the client.
out This is the PrintWriter object used to send output to the client.
session This is the HttpSession object associated with the request.
application This is the ServletContext object associated with application context.
config This is the ServletConfig object associated with the page.
pageContext This encapsulates use of server-specific features like higher performance JspWriters.
page This is simply a synonym for this, and is used to call the methods defined by the translated servlet class.
Exception The Exception object allows the exception data to be accessed by designated JSP.

Is This Answer Correct ?    0 Yes 0 No

What are implicit objects?..

Answer / shrinath rodage

The following are the implicit objects for jsp:

request //used for accept the request of client
response // used for respond to the client
application //used overall our application
session //used maintain the session
out // for display the output
page

Is This Answer Correct ?    2 Yes 4 No

What are implicit objects?..

Answer / asd

implicit objects in python

Is This Answer Correct ?    2 Yes 10 No

Post New Answer

More JSP Interview Questions

What is session scope?

0 Answers  


Which jsp implicit objects are thread safe?

0 Answers  


Can you disable the caching on the back button of a particular browser?

0 Answers  


How to send data from jsp to jsp?

0 Answers  


What is jsp and why is it needed?

0 Answers  






List out the various scope values of jsp action.

0 Answers  


How do I set password expire time period?

4 Answers  


How to access java variable in jsp?

0 Answers  


How we can use javascript with jsp pages?

0 Answers  


What is a expression?

0 Answers  


What is the advantage of using getProperty action, as compared to the accessor method?

0 Answers  


Which attribute specifies a jsp page that should process any exceptions thrown but not caught in the current page? : Citibank

0 Answers  


Categories