jar 파일 배포시 Thymeleaf 리소스 못찾는 문제 해결 방법
2024-02-21 1. 방법 application.properties 에 설정해 둔 경로 확인 # Thymeleaf spring.thymeleaf.enabled=true spring.thymeleaf.prefix=classpath:/templates/ spring.thymeleaf.suffix=.html spring.thymeleaf.mode=HTML spring.thymeleaf.encoding=UTF-8 #spring.thymeleaf.cache=false return 경로가 "/home/home" 이런식으로 되어 있으면 경로 못 찾음 spring.thymeleaf.prefix=classpath:/templates/ 에서 이미 / 를 붙여 주었으니 아래와 같이 되어 있는지 확인 @GetMapping..