@GetMapping("/condition")
public String condition(Model model){
addUsers(model);
return "basic/condition";
}
private void addUsers(Model model){
List<User> list = new ArrayList<>();
list.add(new User("UserA",10));
list.add(new User("UserB",20));
list.add(new User("UserC",30));
model.addAttribute("users",list);
}
마찬가지로 그냥 list에 유저들 넣고 model에 넣어서 템플릿으로 보냄
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>if, unless</h1>
<table border="1">
<tr>
<th>count</th>
<th>username</th>
<th>age</th>
</tr>
<tr th:each="user, userStat : ${users}">
<td th:text="${userStat.count}">1</td>
<td th:text="${user.username}">username</td>
<td>
<span th:text="${user.age}">0</span>
<span th:text="'미성년자'" th:if="${user.age lt 20}"></span>
<span th:text="'미성년자'" th:unless="${user.age ge 20}"></span>
</td>
</tr>
</table>
<h1>switch</h1>
<table border="1">
<tr>
<th>count</th>
<th>username</th>
<th>age</th>
</tr>
<tr th:each="user, userStat : ${users}">
<td th:text="${userStat.count}">1</td>
<td th:text="${user.username}">username</td>
<td th:switch="${user.age}">
<span th:case="10">10살</span>
<span th:case="20">20살</span>
<span th:case="*">기타</span>
</td>
</tr>
</table>
</body>
</html>
방법은
th:if="${조건문}" 이 참이면 태그를 쓰고, 거짓이면 아예 그 태그를 삭제해버림.
th:unless는 if의 반대로, 그러니까 그냥 !조건문 한거랑 같음.
<span th:text="'미성년자'" th:if="${user.age lt 20}"></span>
<span th:text="'미성년자'" th:unless="${user.age ge 20}"></span>
user.age < 20
user.age >= 20
<td th:switch="${user.age}">
<span th:case="10">10살</span>
<span th:case="20">20살</span>
<span th:case="*">기타</span>
</td>
switch case 문.
th:switch="${값}"
th:case="값"
th:case="*" default 임
case는 switch를 쓴 것의 자손들만 쓸 수 있음.
th:case="*"는 전체를 뜻하는 거니까. default라고 보면 됨.
저것 중에서 선택되어진 것만 출력. 나머지 삭제.
'스프링 > 4. 스프링 MVC-2' 카테고리의 다른 글
12. 타임리프 블록 (0) | 2023.08.23 |
---|---|
11. 타임리프 주석 (0) | 2023.08.23 |
9. 타임리프 반복문 (0) | 2023.08.22 |
8. 타임리프 속성 (0) | 2023.08.22 |
7. 타임리프 연산 (0) | 2023.08.22 |