스프링 부트 타임 리프에서 반복문 사용하는 방법
아래 코드처럼 #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번 출력 된 것을 확인 할 수 있다.
'Spring Framework' 카테고리의 다른 글
스프링 부트 jar 파일 Error creating bean with name 'entityManagerFactory' defined in class path resource : Invocation of init method failed 에러 해결 (0) | 2018.11.23 |
---|---|
스프링 부트 manifest 를 찾을 수 없습니다. 에러 해결 (0) | 2018.11.23 |
thymeleaf 타임리프 <a href=javascript 함수에 값 전달하는 방법> </a> (0) | 2018.11.23 |
spring sts thymeleaf 페이지 기본 설정 (0) | 2018.11.22 |
JPA 페이징 , 내림차순 정렬 코드 (0) | 2018.11.21 |
댓글