!!!JSTL
[Java]


!!!Tips

!!ブランク判定
!null 判定
 <c:if test="${ obj == null }">
   何らかの処理			
 </c:if>

!ブランク判定
::ブランク判定
 <c:if test="${empty obj.value}">
::否ブランク判定
 <c:if test="${not empty obj.value}">