JSP Implicit Objects

M

marcwentink

I am reading something about JSP Implicit Objects, objectslike for
example:

request, response, pageContext, application, out, session

But then my tekst book says:

---------------------------------------------------------------------------------
Note that these implicit objects are only visible within the system
generated
_jspService() method. They are not visible within methods you define
yourself in
declarations.
-------------------------------------------------------------------------------

Ok, then this means I cannot use them? If so why mention them anyway?
Can you use them somehow?

Marcus Wentink
 
R

relipse

it is easy to use them, you don't have to write methods in a JSP file
for example
<%

if ( "true".equals(request.getParameter("largetext")))
out.println("<font size=7>LARGE TEXT</font>");


%>

one thing I did when I wrote a method was to pass in the request as a
parameter...
for example...

<%!

public boolean isLargeText(HttpServletRequest request)
{
return "true".equals(request.getParameter("largetext"));
}

%>

then you can write this code below where you need it

<%

if ( isLargeText(request) )
out.println("<font size=7>LARGE TEXT</font>");

%>


hope this helps

-ReLipse
Xhirl Software Design
www.xhirl.com/software
 
M

marcwentink

(e-mail address removed) schreef:
one thing I did when I wrote a method was to pass in the request as a
parameter... for example...

Ok so the text in the book tries to explain that if you use it in a
function you defined, the object is not there, unless you have passed
it as a parameter.....since in this defined function you are in another
scope.

In 'normal' java code snippets in JSP files on the other hand, they are
available.

Bad bad book!

Thanks a lot!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Staff online

Members online

Forum statistics

Threads
473,769
Messages
2,569,577
Members
45,052
Latest member
LucyCarper

Latest Threads

Top