본문 바로가기
Spring Framework

스프링 부트 타임리프 단순 반복문 (for 문) 쓰는 방법

by 자유코딩 2018. 11. 23.

스프링 부트 타임 리프에서 반복문 사용하는 방법


아래 코드처럼 #numbers.sequence ( 1, 5) 이렇게 적으면 된다.


이렇게 작성하면 1부터 5까지 5번 반복을 수행한다.


1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
    <th:block th:each="num: ${#numbers.sequence(1,5)}">
        <a> hello </a>
    </th:block>
</body>
</html>
cs


아래 그림은 html 코드가 나타낸 화면이다.



hello 가 5번 출력 된 것을 확인 할 수 있다.

댓글