[
https://jira.jboss.org/jira/browse/JBWEB-144?page=com.atlassian.jira.plug...
]
Mike Millson commented on JBWEB-144:
------------------------------------
Cummulative change set for this patch 6.0.13 --> 6.0.19:
562807
578466
578610
658470
607334
649195
677728
677729
685699
685701
685708
698887
698913
698918
714256
Based on changes for individual affected files 6.0.13 --> 6.0.19:
========================================
1) ELParser.jtt:
658470
677728
685699
685701
698887
698913
698918
714256
2) ELParser.java:
562807
658470
677729
685708
698918
714256
3) ELParserConstants.java:
562807
658470
677729
685708
714256
4) ELParserTokenManger.java:
562807
658470
677729
685708
714256
5) EvaluationContext.java
607334
698887
6) FunctionMapperImpl.java
578466
578610
649195
698887
JSP EL ternary operator requires space before colon
---------------------------------------------------
Key: JBWEB-144
URL:
https://jira.jboss.org/jira/browse/JBWEB-144
Project: JBoss Web
Issue Type: Bug
Security Level: Public(Everyone can see)
Components: Tomcat
Affects Versions: JBossWeb-2.0.0.GA_CP09
Reporter: Mike Millson
Assignee: Remy Maucherat
Attachments: test.jsp
JSP EL that worked on JBoss AS 4.0.5.GA does not work on EAP. For example, the following
does not work:
<c:set var="truevalue" value="true" />
<c:set var="falsevalue" value="false"/>
<c:out value="${not empty param.yes?truevalue:falsevalue}"/>
It throws this error:
2009-06-11 10:40:57,487 ERROR [org.apache.catalina.core.ContainerBase] Servlet.service()
for servlet jsp threw exception
org.apache.jasper.JasperException: /jsp/case305721.jsp(27,3) "${not empty
param.yes?truevalue:falsevalue}" contains invalid expression(s):
javax.el.ELException: Error Parsing: ${not empty param.yes?truevalue:falsevalue}
at
org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:40)
But this works with a space added before the colon:
<c:out value="${not empty param.yes?truevalue :falsevalue}"/>
This is a bug[1] that was originally fixed in Tomcat 6.0.18[2], but was subsequently
found to cause a regression[3], so was re-implemented in 6.0.19.
[
1]http://issues.apache.org/bugzilla/show_bug.cgi?id=42565
[
2]http://tomcat.apache.org/tomcat-6.0-doc/changelog.html
[
3]http://issues.apache.org/bugzilla/show_bug.cgi?id=45511
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira