| 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
|
 |
 |
|
|
subject: ELIgnored
|
|
|