스프링 인 액션 책을 따라하면서 나타났던 오류이다. 다음과 같은 상태였다. package com.example.spring_in_action; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; @Controller public class HomeController { @GetMapping("/") public String home() { return "home"; } } Welcome to... 다음과 같은 오류가 발생했다. org.thymeleaf.exceptions.TemplateInputException: Error resolving template [ho..