This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes Web Component Certification (SCWCD/OCPJWCD) and the fly likes ELIgnored Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Certification » Web Component Certification (SCWCD/OCPJWCD)
Reply Bookmark "ELIgnored" Watch "ELIgnored" New topic
Author

ELIgnored

Charith Indika Fernando
Greenhorn

Joined: Sep 12, 2005
Posts: 13
hi all,

if i dont specify anywhere abt ELIgnored... will it be ignored... i basically ignored the tag and the attribute in the page directive. and my EL statements were ignored...
Paul Croarkin
Ranch Hand

Joined: Sep 30, 2004
Posts: 106
EL support depends on your container and the version of the servlet spec that it implements. For example, Weblogic 8.1 will not recognize pure EL. However, it will recognize most EL if it is wrapped within a JSTL tag.

Example:

will not be recognized,
but works

Weblogic 8.1 implements the Servlet 2.3 spec. The SCWCD exam covers the 2.4 spec. You will need to find out what version of the spec your app server implements.


Thanks,<br /> <br />Paul Croarkin<br />SCEA 5, SCWCD, SCJP
Vishnu Prakash
Ranch Hand

Joined: Nov 15, 2004
Posts: 1026
EL is enabled by default. If you are using tomcat use 5.x version's which supports JSP 2.0 spec which includes EL. Even with these things sometimes EL may not recognised by the container. Try

<%@ page isELIgnored="false" %> in your JSP Page.


Servlet Spec 2.4/ Jsp Spec 2.0/ JSTL Spec 1.1 - JSTL Tag Documentation
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: ELIgnored
 
Similar Threads
Qn on ELIgnored configarutions...
Math class
ELIGnored and Servlet Spec
Only a test, please ignore
ELIgnored evaluation