int 型
<c:if test="${textint eq 1 }">
如果等于1则输出
</c:if>
判空
<c:if test="${!empty textString}">
不为空输出
</c:if>
<c:if test="${empty textString}">
为空输出
</c:if>
int 型
<c:if test="${textint eq 1 }">
如果等于1则输出
</c:if>
判空
<c:if test="${!empty textString}">
不为空输出
</c:if>
<c:if test="${empty textString}">
为空输出
</c:if>