如何检查EL中的布尔条件?

它是否正确?

<c:if test="${theBooleanVariable == false}">It's false!</c:if> 

或者我可以这样做吗?

 <c:if test="${!theBooleanVariable}">It's false!</c:if> 

你可以在这里看一下EL(expression式语言)的描述。

你的代码都是正确的,但我更喜欢第二个,因为比较布尔值为truefalse是多余的。

为了更好的可读性,你也可以使用not操作符:

 <c:if test="${not theBooleanVariable}">It's false!</c:if> 

两者都有效。 而不是==你可以写eq

你也可以这样检查

 <c:if test="${theBooleanVariable ne true}">It's false!</c:if>