본문 바로가기

JAVA/JSP & Servlet

JSTL [Core 라이브러리] : choose

 

<%@ page language="java" contentType="text/html; charset=UTF-8"

    pageEncoding="UTF-8"%>

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

 

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>JSTL 코어 라이브러리 : choose 실습</title>

</head>

<body>

 

<c:choose>

        <c:when test="${param.num == 0 }">

               param.num == 0 : 처음 뵙겠습니다.<br>

        </c:when>

       

        <c:when test="${param.num == 1 }">

               param.num == 1 : 반갑습니다.<br>

        </c:when>

       

        <c:otherwise >

               c:otherwise : 안녕하세요.<br>

        </c:otherwise>

       

</c:choose>

 

</body>

</html>

 

 

 

 

num값이 없을 때

 

 

 

 

 

 

num값이 0일 때

 

 

 

 

 

num값이 1일 때