Chocolate Chip Cookie
본문 바로가기
Jsp

JSTL 태그 라이브러리 예제

by Khookie 2021. 6. 19.

조건문

 

<h2>JSTL Core Tag: choose</h2>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

<c:set var="today" value="<%= new java.util.Date()%>" />
<c:choose> 
  <c:when test="${today.hours < 12 }" >
Good morning!
  </c:when> 
  <c:when test="${today.hours < 18 }" > 
Good afternoon!
  </c:when> 
  <c:otherwise> 
Good evening!
  </c:otherwise> 
</c:choose> 

<hr>
<c:set var="count" value="3" />
<c:choose> 
  <c:when test="${count <= 0 }" > 
일치하는 것이 하나도 없습니다.
  </c:when> 
  <c:otherwise> 
일치하는 것이 ${count}개 있습니다.
  </c:otherwise> 
</c:choose> 

 


이프문

 

<c:if test="${ today.hours > 17 }" var="bool">
파리바겟트<br>
</c:if>

 


변수제거

<c:remove var="str" scope="page" />

 


변수 선언과 사용

 

<c:set var="today" value="<%= new java.util.Date()%>" />

 


 

 

 

 

댓글