JSTL이란?

  • JSP에서 자주 사용하는 기능을 구현하는 커스텀 태그와 라이브러리의 모음이다.

JSTL을 사용한 예시

Result

Student.java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package com.javit.jsp.tagdemo;

public class Student {

private String firstname;
private String lastname;
private boolean goldCustomer;


public Student(String firstname, String lastname, boolean goldCustomer) {
super();
this.firstname = firstname;
this.lastname = lastname;
this.goldCustomer = goldCustomer;
}


public String getFirstname() {
return firstname;
}


public void setFirstname(String firstname) {
this.firstname = firstname;
}


public String getLastname() {
return lastname;
}


public void setLastname(String lastname) {
this.lastname = lastname;
}


public boolean isGoldCustomer() {
return goldCustomer;
}


public void setGoldCustomer(boolean goldCustomer) {
this.goldCustomer = goldCustomer;
}
}

student-shopping.jsp

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>

<%@ page import="java.util.*, com.javit.jsp.tagdemo.Student" %>


<%
List<Student> data = new ArrayList<>();

data.add(new Student("Javit", "Chung", true));
data.add(new Student("Rene", "Aoki", false));
data.add(new Student("John", "Doe", false));

pageContext.setAttribute("myStudents", data);
%>


<html>

<body>
<table border="1">

<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Gold Customer</th>
</tr>

<c:forEach var="tempStudent" items="${myStudents}">

<tr>
<td>${tempStudent.firstname}</td>
<td>${tempStudent.lastname}</td>
<td>

<c:choose>

<c:when test="${tempStudent.goldCustomer}">
Special Discount
</c:when>

<c:otherwise>
No Discount
</c:otherwise>

</c:choose>
</td>
</tr>

</c:forEach>


</table>
</body>

</html>