jstl_core_ex1.jsp
페이지 정보
본문
<%@ page language="java" contentType="text/html; charset=UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<head>
<title>JSTL core 라이브러리 사용 예제 1</title>
</head>
<body>
<!-- var는 변수 이름, value는 값을 의미한다 -->
<c:set var="test" value="Hello JSTL!"/>
<h3><c:set> 사용 후 : <c:out value="${test}"/></h3>
<h3>${test }</h3>
<!-- 설정된 속성을 제거하는 태그 -->
<c:remove var="test"/>
<h3><c:remove> 사용 후 : <c:out value="${test}"/></h3>
<!-- 예외 처리를 위한 태그 -->
<c:catch var="err">
<%=10/0%>
</c:catch>
<h3><c:catch>로 잡아낸 오류 : <c:out value="${err}"/></h3>
<!-- test 속성은 조건을 지정한다. -->
<c:if test="${5<10}">
<h3>5는 10보다 작다.</h3>
</c:if>
<c:if test="${6+3==9}">
<h3>6 + 3 은 9이다.</h3>
</c:if>
<c:choose>
<c:when test="${5+10==50}">
<h3>5+10은 50이다.</h3>
</c:when>
<c:otherwise>
<h3>5+10은 50이 아니다.</h3>
</c:otherwise>
</c:choose>
</body>
</html>
- 이전글● JSTL(JSP Standard Tag Library) core 21.07.15
- 다음글jstl_core_ex2.jsp 21.07.15
댓글목록
등록된 댓글이 없습니다.