我在servlet中设置了这个context.setAttribute("isGood", isGood)
,以便能够使用pageContext.findAttribute("isGood")
获取JSP文件的值。
有时context.setAttribute("isGood", isGood)
无法设置,因此它不存在,我的JSP给了我一个错误,因为它无法获取它。
如何测试我的JSP中是否存在pageContext.findAttribute("isGood")
?
感谢。
答案 0 :(得分:1)
您可以使用条件检查标记:
<c:if test="${pageContext.getAttribute("isGood") != null }">
</c:if>