1. basic - text-unescaped.html 을 만든다 컨텐츠에 데이터 출력하기 th:text 사용 th:utext 사용 [[...]] = [[${data}]] [(...)] = [(${data})] 2.Controller 가기 @GetMapping("/text-unescaped") public String unescaped(Model model){ model.addAttribute("data","Hello Spring"); return "basic/text-unescaped"; } 3.localhost:8080/basic/text-unescaped 열어보기 4. 짠 완성 김영한님의 MVC-2편 타임리프편보고 공부 끄적끄적 적요 ㅎ
기존/🏀Thymeleaf
1. templeate - basic - text-basic.html 을 만든다 2.text-html 내용 컨텐츠에 데이터 출력하기 th:text 사용 컨텐츠 안에서 직접 출력하기 = [[${data}]] 3.controller 매핑 @Controller @RequestMapping("/basic") public class BasicController { @GetMapping("/text-basic") public String testBasic(Model model){ model.addAttribute("data","hello World!"); return "basic/text-basic"; } } 3.localhost:8080/basic/text-basic 을 들어가면 th:text 사용 여기에 들어갈..