标签: 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>
此代码会在网站上显示1,2或某种异常,因为testVariable不存在吗?
1
2
答案 0 :(得分:2)
非现有变量将被视为null。
null