jstl_core_ex1.jsp > MODEL

본문 바로가기

사이트 내 전체검색

뒤로가기 MODEL

jstl_core_ex1.jsp

페이지 정보

작성자 관리자 작성일 21-07-15 19:47 조회 663 댓글 0

본문

<%@ 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>&lt;c:set&gt; 사용 후 : <c:out value="${test}"/></h3>

<h3>${test }</h3> 


<!-- 설정된 속성을 제거하는 태그 --> 

<c:remove var="test"/>

<h3>&lt;c:remove&gt; 사용 후 : <c:out value="${test}"/></h3>


<!-- 예외 처리를 위한 태그 --> 

<c:catch var="err">

<%=10/0%>

</c:catch>

<h3>&lt;c:catch&gt;로 잡아낸 오류 : <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>

추천0

댓글목록 0

등록된 댓글이 없습니다.


Copyright © dancePKT. All rights reserved.
PC 버전으로 보기