728x90
JSP 페이지 에서 코드 작업시 반복문을 사용할 경우가 있다
jstl 반복문 c:forEach 태그를를 사용하면 된다
JSTL Core 선언
jsp 페이지 상단에 JSTL을 선언한다.
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<c:forEach> 기본 구조
<c:forEach var="변수이름" items="반복할객체이름" begin="시작값" end="마지막값" step="증가값" varStatus="반복상태변수이름">
...
</c:forEach>
728x90
'Back-End > Java' 카테고리의 다른 글
[Maven] 메이븐 오류 META-INF\\MANIFEST.MF (지정된 경로를 찾을 수 없습니다) (0) | 2023.09.14 |
---|---|
[Maven] 메이븐 오류 No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK? (0) | 2023.09.13 |
[Java] 이클립스(Eclipse) 디버깅 단축키 (0) | 2022.10.07 |
[JAVA] 자바 이클립스(Eclipse) 테마 색상 변경 (0) | 2022.10.04 |