如何使EL关系操作符在Tomcat 8/JSTL 1.2上工作



从Tomcat 6升级到Tomcat 8.0.32后,我有一个奇怪的行为

关系操作符(<,>, <=,>=)不能处理用c:set

定义的变量
public class ServiceConstants {
  public static final Integer MY_CONST = 15;
}

下面是我的代码(更新):

<%@ page isELIgnored="false"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<c:set var="a" value="<%=ServiceConstants.MY_CONST%>"/>
<c:set var="b" value="${127}" />
<html>
<body>
<br/>a: ${a}
<br/>b: ${b}
<br/>Using variables {b > a}: ${b > a}
<br/>Using variables {b gt a}: ${b gt a}
<br/>Hardcoded values {127 > 15}: ${127 > 15}
</body>
</html>

下面是渲染的

a: 15 
b: 127 
Using variables {b > a}: false 
Using variables {b gt a}: false 
Hardcoded values {127 > 15}: true

当比较c:set集合的a和b时,返回错误的答案

下面是我的web.xml文件

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
                  http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
  version="3.0" metadata-complete="true">
  <absolute-ordering />
  <distributable/>
  <display-name>App name</display-name>
  <jsp-config>
    <taglib>
      <taglib-uri>http://xyzo.org/app</taglib-uri>
      <taglib-location>/WEB-INF/tld/app.tld</taglib-location>
    </taglib>
  </jsp-config>
</web-app>

我尝试了几个解决方案发布,更改Tomcat 8.0.37(最新),更改我的web.xml文件头等。

任何帮助都非常感谢。

编辑如下:

我发现EL将数字解释为字符串。如果我强制凝聚,它可以工作,但看起来很麻烦。

<%@ page isELIgnored="false"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<c:set var="a" value="<%=ServiceConstants.MY_CONST%>"/>
<c:set var="b" value="${127}" />
<html>
<body>
<br/>a: ${a}
<br/>b: ${b}
<br/>Using variables {b > a}: ${b > a}
<br/>Using variables {b gt a}: ${b gt a}
<br/>Hardcoded values {127 > 15}: ${127 > 15}
<br/>...
<br/>Forcing cohersion
<br/>Using variables {b > (0 + a)}: ${b > (0 + a)}
</body>
</html>

它结果:

a: 15 
b: 127 
Using variables {b > a}: false 
Using variables {b gt a}: false 
Hardcoded values {127 > 15}: true 
...
Forcing cohersion 
Using variables {b > (0 + a)}: true

任何关于如何使EL做"正确的事情"的建议都将不胜感激。

如果在设置变量时使用表达式,就不那么麻烦了:

<c:set var="a" value="${15}"/>
<c:set var="b" value="${127}" />

相关内容

  • 没有找到相关文章

最新更新