引用jsp文件中的非现有变量

时间:2011-12-19 10:33:34

标签: jsp el

在jsp文件中测试不存在的变量时的预期行为是什么 for Java 1.4.2和Tomcat 5.0?

例如:

<c:when test="${testVariable ne 'test'}">
    1
</c:when>
<c:otherwise>
    2
</c:otherwise>

此代码会在网站上显示12或某种异常,因为testVariable不存在吗?

1 个答案:

答案 0 :(得分:2)

非现有变量将被视为null