[JSTL]c:ifでnullを判定するサンプル
書式
empty 変数名
使用例1
<c:if test="${empty username}">
変数が空もじまたはNULLです
</c:if>
使用例2
<c:if test="${not empty username}">
変数がnullではない
</c:if>
使用例3
<c:if test="${!empty username}">
変数がnullではない
</c:if>
Coding Changes the World
書式
empty 変数名
使用例1
<c:if test="${empty username}">
変数が空もじまたはNULLです
</c:if>
使用例2
<c:if test="${not empty username}">
変数がnullではない
</c:if>
使用例3
<c:if test="${!empty username}">
変数がnullではない
</c:if>