<c:set var="Ntest" value="d,d,d,d,d,d,g,g,g,g,g,g,e,e,e,e,e" />
<c:forEach items="${Ntest }" var="test" varStatus="status">
<%-- 루프안에서 해당 값이 처음이면 저장 중복이면 저장안함 --%>
<c:if test="${status.current eq 'd' }">
<c:if test="${result1 ne '디지'}">
<c:set var="result1" value="디지" />
</c:if>
</c:if>
<c:if test="${status.current eq 'g' }">
<c:if test="${result2 ne '골드'}">
<c:set var="result2" value="골드" />
</c:if>
</c:if>
<c:if test="${status.current eq 'f' }">
<c:if test="${result3 ne '에프'}">
<c:set var="result3" value="에프" />
</c:if>
</c:if>
<c:if test="${status.current eq 'e' }">
<c:if test="${result4 ne '이프'}">
<c:set var="result4" value="이프" />
</c:if>
</c:if>
</c:forEach>
<c:set var="result" value= "${result1},${result2},${result3},${result4}" />
<c:forEach items="${result }" var="test2" varStatus="status">
<c:choose>
<c:when test="${!status.last}">,${status.current}</c:when>
<c:otherwise>${status.current}</c:otherwise>
</c:choose>
</c:forEach>
':::: 개발 :::: > └ JSP & SPRING' 카테고리의 다른 글
Non-resolvable parent POM for (0) | 2018.05.08 |
---|---|
웹스퀘어 체크박스 제어 (0) | 2018.02.01 |
혹시 JSP 호스팅 중 lib 오류 (0) | 2017.11.09 |
URL 한글처리 (인코딩/디코딩) (0) | 2017.11.06 |
SPRING COOKIE / JSP COOKIE (0) | 2017.04.06 |
spring JSON 변환 검색 사이트 정리 (0) | 2017.03.09 |
웹스퀘어 날짜 초기화 (0) | 2016.11.25 |
spring boot test 삽질 1 @Controller (0) | 2016.11.13 |