로딩
요청 처리 중입니다...

96 An error happened during template parsing (template: "class path resource [templates//@@.html]")

 96 An error happened during template parsing (template: "class path resource [templates//@@.html]")

org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//todo/index.html]") view 단을 thymeleaf로 작은 프로젝트를 진행하고 있는 와중에, 뭔가 페이지를 불러오지 못하는 오류를 발견하였습니다. @GetMapping("/calender") public ModelAndView viewCalender() { ModelAndView modelAndView = new ModelAndView(); modelAndView.setViewName("/todo/calender"); return modelAndView; } 코드상에서는 전혀 문제가 없어 보이는데, 오류를 다시 보니, [ templates//todo/index.html ] 이라고 하여, 뭔가 슬래시가 두개가 있는 것을 발견하였고, ...