기존(310)/🏀Spring
(스프링) JSTL C: foreach,c:if
조각남자
2022. 7. 6. 21:42

|
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
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> // 태그 라이브러리 사용
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
---------------------------------
<c:if test="${sessionScope.admin_userid != null }">
<button class="btn btn-outline-dark" type="button" id="btnAdd" style="float: right;" > 상품등록 </button>
</c:if>
----------------------------------
<c:if test= " 값 " >
내용
</c:if>
----------------------------------
<!-- var="레코드변수" items="리스트변수" -->
<c:forEach var="row" items="${list}">
반복문
</c:forEach>
------------------------------------
|
cs |