[Thymeleaf] 타임리프 반복문 사용하는 방법

2022-12-20


Photo by Jane Duursma on Unsplash


1. 방법

 

th:each 와 th:text를 사용하면된다. th:each 에서 list 형 객체를 가져오고 이 객체를 alias 설정 후에 th:text 에 담아서 데이터를 출력해주면 된다.

 

		  	<tr scope="row" th:each="info : ${infoList}">
				<td th:text="${info.infoNo}"></td>
				<td th:text="${info.infoName}"></td>
				<td th:text="${info.infoAge}"></td>
			</tr>

메인 이미지 출처 : Photo by Jane Duursma on Unsplash