728x90
https://github.com/NayoungBae/springIntroduction/commit/2a6c21918aaa055d46d7b4680540bdcdc28821ee
//경로 : templates/members/memberList.html
...
<tr th:each="member : ${members}">
<td th:text="${member.id}"></td>
<td th:text="${member.name}"></td>
</tr>
...
Thymeleaf 문법
- th:each
- foreach랑 비슷한 반복문
- ${members}는 model.addAttribute("members", members); 했던 그 데이터 리스트
- th:text
- 값을 출력해줌
'Spring Framework' 카테고리의 다른 글
Spring) 회원 관리 예제 - 홈 화면 추가 / 회원 웹 기능 - 등록 (0) | 2022.02.01 |
---|---|
Spring) 스프링 빈과 의존관계 (0) | 2022.01.22 |
Spring) 회원관리 예제 - 백엔드 개발 (0) | 2022.01.22 |
Spring) API (0) | 2022.01.21 |
Spring) 빌드하고 실행하기 / 정적 컨텐츠 / MVC와 템플릿 엔진 (0) | 2022.01.08 |