Web/Front
[Thymeleaf] 기본 문법
yj_oo_
2021. 7. 27. 16:16
표현식
- 변수 : ${...}
- 선택 변수 : *{...}
- 메시지 : #{...}
- Link URL : @{...}
text operation
- 문자열 연결 : +
- 문자 대체 : |이렇게 묶어주세요|
boolean 연산
- Binary : and, or
- 부정 : !, not
조건 연산
- if-then : (if) ? (then)
- if-then-else : (if) ? (then) : (else)
- Default : (value) ?: (defaultValue)