jstl choose when 소수점 비교하기
- 2018. 6. 27. 19:04
비교식을 < > 사용한 소수점 비교가 잘되지 않았다.
비교표현식으로 수정하니 원하는 값이 잘나옴
JSTL 비교표현식 을 사용해야함
== 또는 eq
!= 또는 ne
< 또는 lt
> 또는 gt
<= 또는 le
>= 또는 ge
<c:forEach items="${resultList}" var="tableList" varStatus="listStatus">
<c:choose>
<c:when test="${tableList.f3 lt 0.1}"></c:when>
<c:when test="${tableList.f3 lt 1.0}">class="cr1"</c:when>
<c:when test="${tableList.f3 lt 5.0}">class="cr2"</c:when>
<c:when test="${tableList.f3 lt 10.0}">class="cr3"</c:when>
<c:when test="${tableList.f3 lt 20.0}">class="cr4"</c:when>
<c:when test="${tableList.f3 lt 50.0}">class="cr5"</c:when>
<c:when test="${tableList.f3 lt 100.0}">class="cr6"</c:when>
<c:otherwise>class="cr6"</c:otherwise>
</c:choose>
</c:forEach>
'IT' 카테고리의 다른 글
WINDOWS 에서 맥처럼 한영 변환하기.. (0) | 2018.08.26 |
---|---|
경험이 부족한 개발자 VS 경험이 풍부한 개발자 (2) | 2018.08.03 |
윈도우10 무료로 정품인증하여 사용하기 (7) | 2018.07.01 |
DB import 하다보면 CPU 사용률이 100%를 넘어간다. (0) | 2018.06.27 |
javascript 1시간 마이너스 하기 (4) | 2018.06.08 |
고속도로 USB 앨범 (0) | 2018.05.23 |
맥북프로 2017 터치바 개봉기 (4) | 2018.02.01 |
티켓몬스터 쿠팡 UI (0) | 2017.12.13 |
이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받고 있습니다. 1 5