본문 바로가기
Programming/Spring

Thymeleaf yml설정

by 꾸준함 2023. 3. 19.
  thymeleaf:
    prefix: classpath:/templates/
    cache: 'false'
    check-template-location: 'true'
    suffix: .html

 

prefix부분 마지막 슬래시("/") 를 유의하자. 슬래시 까지 넣어두고 Controller에서 return할때  "/test" 의 형식으로 return하면 슬래시가 중복이 되어 오류가 날 수 있다.