스킬(skills)/JSTL(Jsp Standard Tag Library) 각종 문법 예제 후바스탱크 2014. 9. 15. 17:20 1. if문<c:if test="${name == 'yangyag'}"> 이름 </c:if> 2. choose 문<c:choose> <c:when test="${empty userList}"> 유저 목록 없음 </c:when> <c:otherwise> 유저 목록 있음 </c:otherwise> </c:choose> 3. forEach 문<c:forEach items="${userList }" var="user"> ${user.name} 은 ${user.age} 세 입니다.<br/> </c:forEach>