JSTL 리스트 카운트 표시
<c:set value="${list.size()}" var="listCnt"></c:set>
JSTL 조건문
<c:if test="${listCnt == listStatus.index }">
</c:if>
JSTL if, else 조건문
<c:choose>
<c:when test="${listCnt > 0}">
<c:forEach items="${list}" var="listItem" varStatus="listStatus">
listItem.title, listItem.content
</c:forEach>
</c:when>
<c:otherwise>
게시물이 없습니다.
</c:otherwise>
</c:choose>
<c:choose>
<c:when test="${results.totalAns ne 0}">
<fmt:formatNumber value="${results.totalSec / results.totalAns }" maxFractionDigits="3" />
</c:when>
<c:otherwise>
0
</c:otherwise>
</c:choose>
JSTL formatter
<fmt:parseDate type="date" value="${listItem.regDt }" var="regDt" pattern="yyyyMMddHHmmss"/>
<fmt:formatDate value="${regDt}" pattern="yyyy-MM-dd HH:mm" />
'자바·JSP' 카테고리의 다른 글
파일 사이즈체크 (0) | 2014.04.11 |
---|---|
Maven이란 무엇인가? (0) | 2014.03.06 |
[오류] The type BASE64Decoder is not accessible due to restriction on required library (1) | 2013.08.19 |
이클립스 디버깅 시 사선으로 브레이크 포인트 표시되면서 안될 때.. (3) | 2013.04.24 |
JAVA에서 HTML 긁어오기 (1) | 2013.01.15 |