1. basic - text-unescaped.html 을 만든다
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org"> <!--이거 작성해야 타임리프 사용가능..-->
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>컨텐츠에 데이터 출력하기</h1>
<ul>
<li>th:text 사용 <span th:text="${data}"></span></li>
<li>th:utext 사용 <span th:utext="${data}"></span></li>
</ul>
<ul>
<li><span th:inline="none">[[...]] = </span>[[${data}]]</li>
<li><span th:inline="none">[(...)] = </span>[(${data})]</li>
</ul>
</body>
</html>
2.Controller 가기
@GetMapping("/text-unescaped")
public String unescaped(Model model){
model.addAttribute("data","Hello <b>Spring</b>");
return "basic/text-unescaped";
}
3.localhost:8080/basic/text-unescaped 열어보기
4. 짠 완성 김영한님의 MVC-2편 타임리프편보고 공부 끄적끄적 적요 ㅎ
'기존 > 🏀Thymeleaf' 카테고리의 다른 글
[thymeleaf] 타임리프 텍스트 출력하기 (th:text) (0) | 2022.11.07 |
---|