본문 바로가기
  • 아하하
미분류

jstl empty (null) check

by 쥬쥬파파 2014. 6. 28.

<c:if test="${empty var1}">
    var1 is empty or null.
</c:if>
<c:if test="${not empty var1}">
    var1 is NOT empty or null.
</c:if>