在我的Spring Controller中
@Controller
class DummyController{
@Requestmapping
public String testBlopGhostController{
model.addattributes ( "yop", false );
return nameOfJspPage;
}
然后在我的Jsp页面中:
<c:if test ="${yop}">
<c:if test ="${blop}">
<p>One who stands straight doesn't fear a crooked shadow.</p>
</c:if>
</c:if>
即使没有在模型中添加blop变量,浏览器中也没有JspException和日志。
Jsp如何处理这种情况(如果在jsp测试平衡中使用了多个未定义的变量)?