JSP:测试是否存在来自pageContext.findAttribute(“”)的变量

时间:2015-03-25 09:45:31

标签: java jsp java-ee

我在servlet中设置了这个context.setAttribute("isGood", isGood),以便能够使用pageContext.findAttribute("isGood")获取JSP文件的值。

有时context.setAttribute("isGood", isGood)无法设置,因此它不存在,我的JSP给了我一个错误,因为它无法获取它。

如何测试我的JSP中是否存在pageContext.findAttribute("isGood")

感谢。

1 个答案:

答案 0 :(得分:1)

您可以使用条件检查标记:

<c:if test="${pageContext.getAttribute("isGood") != null }">

</c:if>