728x90
반응형
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<c:choose> 태그는 자바의 switch 구문과 if-else 블록을 혼합한 형태로써
다수의 조건문을 하나의 블록에서 수행하고자 할때 사용된다.
<c:choose>
<c:when test="${member.level == 'tiral'}>
</c:when>
<c:when test="${member.level == 'reqular'}>
</c:when>
..else
<c:otherwise>
</c:otherwise>
</c:choose>
<c:choose>태그는 다수의 <c:when>태그가 중첩되어 사용되는데,
각가의 <c:when>태그는 test속성의 결과값이 true 일 경우 내부 블록을 수행한다.
<c:when>태그의 test 결과 값이 모두 false 면 <c:otherwise>가 실행된다.
728x90
반응형
'Web Programming > java-jsp' 카테고리의 다른 글
오라클 시퀀스 및 날짜 예약어 (0) | 2013.09.10 |
---|---|
SimpleDateFormat 클래스 (0) | 2013.09.10 |
PropertyPlaceholderConfigurer 사용법 (0) | 2013.09.09 |
팩토리 패턴 (0) | 2013.09.08 |
싱글톤 패턴 (0) | 2013.09.08 |