You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This error did not occur in the older version.
For some reason, it seems it rejects the paranthesized expression: (zz)
when there is only a single variable inside.
Remove the parenthesis, and the error goes away.
Also, if you for example change the code to: <c:if test="${(zz+zz) > 0}">XXX</c:if>
or <c:if test="${(1) > 0}">XXX</c:if>
these are both accepted without any errors.
The text was updated successfully, but these errors were encountered:
When upgrading a legacy jsp-application with latest spring-boot dependencies,
it looks like we hit a minor bug in:
javax.servlet:jstl:jar:1.2
Testcase:
in a jsp-file, yields a compilation-error:
This error did not occur in the older version.
For some reason, it seems it rejects the paranthesized expression:
(zz)
when there is only a single variable inside.
Remove the parenthesis, and the error goes away.
Also, if you for example change the code to:
<c:if test="${(zz+zz) > 0}">XXX</c:if>
or
<c:if test="${(1) > 0}">XXX</c:if>
these are both accepted without any errors.
The text was updated successfully, but these errors were encountered: