1. application.properties 설정 추가spring.thymeleaf.prefix=classpath:templates/spring.thymeleaf.check-template-location=truespring.thymeleaf.suffix=.htmlspring.thymeleaf.mode=HTMLspring.thymeleaf.cache=false 2. build.gradle 설정 추가implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' 3. html 경로 설정- 설정된 templates 하위 경로에 html 파일 생성 - Controller를 통해 해당 경로 html 호출 4. Tyhmeleaf가 적용되지 않는 ..