https://www.thymeleaf.org/doc/tutorials/3.0/usingthymeleaf.html#what-is-thymeleaf
https://s-yeonjuu.tistory.com/6
Boolean literals
The boolean literals are true and false. For example:
<div th:if="${user.isAdmin()} == false"> ...
In this example, the == false is written outside the braces, and so it is Thymeleaf that takes care of it. If it were written inside the braces, it would be the responsibility of the OGNL/SpringEL engines:
<div th:if="${user.isAdmin() == false}"> ...
The null literal
The null literal can be also used:
<div th:if="${variable.something} == null"> ...
'실습기록' 카테고리의 다른 글
7월 27일 project - MySQL 더미값 엑셀 cvs 깨짐 해결 저장 (0) | 2023.07.28 |
---|---|
7월 26일 project - sql 기본문법 (0) | 2023.07.27 |
7월 24일 project - 반복문 가운데 정렬 CSS (0) | 2023.07.25 |
7월 21일 project - 비회원, 회원 댓글, 수정, 삭제 버튼 처리 (0) | 2023.07.25 |
7월 20일 project - 게시판(목록, 상세페이지, 글쓰기, 글수정) (0) | 2023.07.20 |