<%@ 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>Insert title here</title>
</head>
<body>
<%------------------------------ jsp주석, core tag 안에서는 무조건 이 주석을 사용해야 한다. --%>
<c:if test="${2 > 0}">
2가 0보다 크다.
</c:if>
<c:forEach var="i" begin="1" end="9" step="1">
<c:choose>
<c:when test="${i % 2 eq 0}">
${i}<br/>
</c:when>
<c:otherwise>
<b>${i}</b><br/>
</c:otherwise>
</c:choose>
</c:forEach>
<!-- 구구단 2~9단 출력, core tag와 el tag 활용 -->
<c:forEach var="i" begin="2" end="9" step="1">
<c:forEach var="j" begin="1" end="9" step="1">
${i} * ${j} = ${i * j}<br />
</c:forEach>
</c:forEach><!-- 앞부분 반복 -->
<c:import url="test2.jsp"></c:import>
</body>
</html>
'개발관련 > 기록' 카테고리의 다른 글
RequestMapping 주소 확인하기 (0) | 2021.06.09 |
---|---|
oracle developer에서 YYYY로 검색하기 (0) | 2021.06.09 |
https://mvnrepository.com/artifact/org.scalatest/scalatest_2.9.2/2.0.m5b 메이븐 repository (0) | 2021.06.05 |
views 폴더에서 관리하는 이유 (0) | 2021.06.05 |
jsp name 없을 시 SQL에서 pk안나오는 에러 (0) | 2021.06.05 |