「Spring」emptyでnullを判定するサンプル
書式
emptyで変数が空文字またはNULLかどうかを判定します。
使用例1
strutsの場合
<logic:empty name="userForm" property="addr"> 111 </logic:empty>
springの場合
<c:if test="${empty userForm.addr }"> 1111 </c:if>
使用例2
strusの場合
<logic:notEmpty name="userForm" property="addr"> 2222 </logic:notEmpty>
springの場合
<c:if test="${not empty userForm.addr }"> 2222 </c:if>