<c:if>
<c:if test="조건">
몸체
</c:if>
<c:set var="i" value="20"/>
<c:if test="${i>10 }">
${i} > 10
</c:if>
<c:choose> <c:when> <c:otherwise>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title> c:if, c:choose, c:when , c:otherwise </title>
</head>
<body>
<form action="tutorial.jsp">
<input type="text" name="parameter"/>
<input type="submit" value="전송">
</form>
</body>
</html>
<%@ 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> c:if, c:choose, c:when , c:otherwise </title>
</head>
<body>
<c:choose>
<c:when test="${param.parameter > 10 }">
10 보다 큼
</c:when>
<c:when test="${param.parameter < 10 }">
10 보다 작음
</c:when>
<c:otherwise>
10 과 같음
</c:otherwise>
</c:choose>
</body>
</html>
[Mac, Homebrew, tomcat] 맥에서 Hombrew를 이용하여 톰캣 설치 (0) | 2020.06.19 |
---|---|
JSTL <c:forEach> <c:forToken> 태그 (0) | 2019.11.14 |
JSTL <c:set> (0) | 2019.11.14 |
서블릿 : 파라미터 요청처리 doPost메서드 doGet메서드 (0) | 2019.11.10 |
서블릿(Servlet) 생명주기(LifeCyle) (0) | 2019.11.10 |
댓글 영역