* 상황 - Spring Boot + Thymeleaf 합치는 과정에서 제대로 되나 Controller랑 index.html 만들어서 테스트하는데 에러남
* 원인 - application.properties에서 spring.thymeleaf.prefix의 값과 GetMapping 할 때 value 값에 / 포함한 절대경로로 대입해서 그런 거였음
* 해결방법
1. application.properties에서 spring.thymeleaf.prefix=classpath:/templates/ 로 변경
2. HomeController.java에서 @GetMapping("/index")에서 @GetMapping("index")로 변경
반응형
'에러' 카테고리의 다른 글
Windows에서 npm 패키지 전역 설치 경로 지정해주기 (0) | 2021.07.04 |
---|---|
[Windows] 한글 입력시 자음, 모음 분리 현상 (0) | 2021.06.12 |
[Terminal] bash syntax error near unexpected token `(' (0) | 2021.04.15 |
[Terminal] error: internal/modules/cjs/loader.js:883 (0) | 2021.03.17 |
맥 캡쳐하는 단축키 (0) | 2021.02.04 |