Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- pointcut
- 알고리즘
- transaction
- 인프런
- Spring Boot
- kotlin
- Android
- Greedy
- 스프링
- JPQL
- Thymeleaf
- 김영한
- Servlet
- SpringBoot
- java
- Proxy
- 스프링 핵심 원리
- db
- 스프링 핵심 기능
- spring
- jpa
- QueryDSL
- AOP
- 백준
- http
- Exception
- JDBC
- 자바
- springdatajpa
- 그리디
Archives
- Today
- Total
개발자되기 프로젝트
[Thymeleaf] 변수, SpringEL 본문
1. 변수 표현식
- ${...}
- 해당 변수 표현식에는 SpringEL이라는 스프링에서 제공하는 표현식 사용 가능
2. 예제
2.1 controller
- User 생성
- List<User> 생성
- Map<String, User> 생성
@GetMapping("/variable")
public String variable(Model model){
User userA = new User("userA", 10);
User userB = new User("userB", 20);
List<User> list = new ArrayList<>();
list.add(userA);
list.add(userB);
Map<String, User> map = new HashMap<>();
map.put("userA", userA);
map.put("userB", userB);
model.addAttribute("user", userA);
model.addAttribute("users", list);
model.addAttribute("userMap", map);
return "basic/variable";
}
@Data
static class User{
private String username;
private int age;
public User(String username, int age) {
this.username = username;
this.age = age;
}
}
2.2 HTML
- SpringEL 표현식
- ~~.username : 프로퍼티 접근 -> user.getUsername()
- ~~['username'] -> user.getUsername()
- ~~.getUsername() -> -> getUsername() 직접 호출.
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>SpringEL 표현식</h1>
<ul>Object
<li>${user.username} = <span th:text="${user.username}"></span></li>
<li>${user['username']} = <span th:text="${user['username']}"></span></li>
<li>${user.getUsername()} = <span th:text="${user.getUsername()}"></span></li>
</ul>
<ul>List
<li>${users[0].username} = <span th:text="${users[0].username}"></span></li>
<li>${users[0]['username']} = <span th:text="${users[0]['username']}"></span></li>
<li>${users[0].getUsername()} = <span th:text="${users[0].getUsername()}"></span></li>
</ul>
<ul>Map
<li>${userMap['userA'].username} = <span th:text="${userMap['userA'].username}"></span></li>
<li>${userMap['userA']['username']} = <span th:text="${userMap['userA']['username']}"></span></li>
<li>${userMap['userA'].getUsername()} = <span th:text="${userMap['userA'].getUsername()}"></span></li>
</ul>
</body>
</html>
2.3 지역변수
- 지역 변수는 선언한 테그 안에서만 사용
<h1>지역변수 - (th:with)</h1>
<div th:with="first=${users[0]}">
<p>처음 사람의 이름은 <span th:text="${first.username}"></span></p>
</div>
3. GitHub : 210917 Thymeleaf, Variable, SpringEL
'인프런 > [인프런] 스프링 MVC 2' 카테고리의 다른 글
[Thymeleaf] 유틸리티 객체, 날짜 (0) | 2021.09.18 |
---|---|
[Thymeleaf] 기본 객체들 (0) | 2021.09.18 |
[Thymeleaf] Text, uText (0) | 2021.09.17 |
Thymeleaf 소개 (0) | 2021.09.17 |
프로젝트 생성 (0) | 2021.09.17 |
Comments