-
JSTL(Java Standard Tag Library)의 조건문2014/:: Web :: 2014. 10. 1. 14:02
JSP
JSTL 사용
if(조건){
}else{
}
<c:if test = 조건>
</if>
switch/case/default
<c:choose>
<c:when test=조건>
</c:when>
<c:otherwise>
<c:otherwise>
</c:choose>
※JSTL에는 else가 존재하지 않는다.
'2014 > :: Web ::' 카테고리의 다른 글
EL(Expression Language)의 특징 (0) 2014.10.01