[Thymeleaf] Thymeleaf
·
Web & Android/Thymeleaf
Thymeleaf 서버 사이드 템플릿 엔진의 한 종류 html 태그에 속성을 추가해 페이지에 동적으로 값을 추가하거나 처리할 수 있다. 서버 사이드 렌더링 하지 않고 브라우저에 띄워도 정상적인 화면을 볼 수 있다. //상단에 적어주면 타임리프 사용 가능 // Gradle - build.gradle implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' Controller @Controller public class ThymeleafController { @GetMapping(value = "/thymeleaf/ex1") public String ex1(Model model) { model.addAttribute("data", "Sp..