JSP의 경우에는 HTML 태그와 같이 사용되어서 전체적인 코드의 가독성이 떨어진다. JSTL은 이러한 단점을 보완하고자 만들어진 태그 라이브러리이다.
다섯가지의 라이브러리를 지원해준다.
가장 기본적인 라이브러리로 출력, 제어문, 반복문과 같은 기능이 포함되어있다.
<%@ taglib uri=http://java.sun.com/jsp/jstl/core prefix=“c” %>
<c:out value=“출력값” default=“기본값” escapeXml=“true or false”>
<c:set var=“변수명” value=“설정값” target=“객체” property=“값” scope=“범위”>
<c:remove var=“변수명” scope=“범위”>
<c:if test=“조건” var=“조건 처리 변수명” scope=“범위”>
<c:choose>
<c:when test=“조건”> 처리 내용 </c:when>
<c:otherwise> 처리 내용 </c:otherwise>
</c:choose>
<c:forEach items=“객체명” begin=“시작 인덱스” end=“끝 인덱스” step=“증감식” var=“변수명” varStatus=“상태변수”>
<c:param name=“파라미터명” value=“값”>
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>Insert title here</title>
</head>
<body>
<c:set var="vatName" value="varValue"/>
vatName : <c:out value="${vatName}"/>
<br />
<c:remove var="vatName"/>
vatName : <c:out value="${vatName}"/></h3>
<hr />
<c:catch var="error">
<%=2/0%>
</c:catch>
<br />
<c:out value="${error}"/>
<hr />
<c:if test="${1+2==3}">
1 + 2 = 3
</c:if>
<c:if test="${1+2!=3}">
1 + 2 != 3
</c:if>
<hr />
<c:forEach var="fEach" begin="0" end="30" step="3">
${fEach}
</c:forEach>
</body>
</html>
vatName : varValue
vatName :
java.lang.ArithmeticException: / by zero
1 + 2 = 3
0 3 6 9 12 15 18 21 24 27 30