Spring Boot에 Thymeleaf 템플릿 엔진을 적용해 보겠습니다. Thymeleaf 란? 컨트롤러가 전달하는 데이터를 이용하여 HTML을 꾸밀수 있도록하는 뷰 템플릿(View Template)입니다. Thymeleaf 연동 및 설정 Dependency 추가 Gradle의 경우 build.gradle dependencies { ... implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' ... } Maven의 경우 pom.xml ... org.springframework.boot spring-boot-starter-thymeleaf ... src/main/resources/application.properti..