If you have HFJS:
HFJS page 398 Chap 8,
How come in most of the print statements the author has used directly the attribute name without using the 'requestScope' accessor?
If you dont have the book:
Servlet code:
String num="2";
request.setAttribute("num",num);
Integer i=new Integer(3);
request.setAttribute("integer",i);
Q is what will they print:
1) ${num>3)
2)${integer le 12}
3)${requestScope["integer'] ne 4 and 6 le num || false}
Now how come in the 3) we are accessing the attributes using 'requestScope' and in other places they are being direclty accessed?