Cannot find template location: classpath:/templates/ (please add some templates or check your Thymeleaf configuration) 오류가 뜹니다
이미 해결 하셨겠지만 현재 시점에 문제 겪는 분들을 위해이 콘솔 경고 메시지는 Spring이 classpath:/templates/ 경로에 템플릿 파일을 찾지 못하고 있다는 것을 나타냅니다이 문제를 해결하려면 다음 중 하나를 수행 할 수 있습니다:src/main/resources 디렉토리 아래에 templates 디렉토리를 생성하고 해당 디렉토리에 HTML 파일을 추가합니다.(권장...?)또는 application.properties 또는 application.yml 파일에서 spring.thymeleaf.check-template-location 속성을 false로 설정하여 이 속성을 비활성화합니다.다음은 application.properties 파일에서이 속성을 비활성화하는 예입니다:spring.thymeleaf.check-template-location=false 맞나...? 어쨌든 저는 해결하고 다음으로갑니당