일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- oracle
- 강좌
- 안드로이드
- 운정
- 설치
- s4a
- 잡토이 메이킹 코딩 학원
- Unity
- tomcat
- jsp
- 잡토이
- 톰캣
- 예제
- librecad
- 아두이노
- Spring Security
- MSSQL
- Android
- 오라클
- 코딩
- jobtoy
- 설정
- 리브레캐드
- 파주
- 시작하기
- 스크래치
- html5
- 라즈베리파이
- mysql
- 유니티
- Today
- Total
랩제이
[jstl] c:when and or 본문
[jstl] c:when and or
* 기본
<c:choose>
<c:when test="${param_r1 eq 'FindLibroId' }">
</c:when>
<c:when test="${param_r1 eq 'FindLibroPw' }">
</c:when>
<c:when test="${param_r1 eq 'AuthLibroUser' }">
</c:when>
<c:otherwise>
</c:otherwise>
</c:choose>
<c:when test="${param_r1 eq 'FindLibroId' }">
* or
<c:when test="${resultMap.status_code == 'G1' or resultMap.status_code == 'G8'}">
* ||
<c:when test="${resultMap.referer eq null || resultMap.referer eq ''}">
* and
<c:when test="${resultMap.status_code == 'G1' and resultMap.status_code == 'G8'}">
* empty
<c:when test="${empty join_day}">유료가입 전</c:when>
* not empty
<c:when test="${not empty event.ATCH_FILE_NAME}">
* >
<c:when test="${resultMap.startPage-1 > 1}">
* <
<c:when test="${resultMap.endPage+1 < resultMap.maxPage}">
* gt
<c:when test="${fn:length(addresses) gt 0}">
'programming > jstl' 카테고리의 다른 글
[jstl] fmt_rt와 functions의 사용 (0) | 2014.05.29 |
---|---|
[jstl] List 배열 jstl로 보여주기 (0) | 2013.12.19 |
[jstl] c:forEach 에서 , 구분자로 보여주기 (0) | 2013.12.04 |
[jstl] 작고 크고 비교하기 (0) | 2013.10.02 |
[jstl] c:choose c:otherwise 선택하기 (1) | 2013.08.22 |