본문 바로가기

서버

Spring boot 3 - Thymeleaf 핫리로드까지는 아니지만 리로드시 적용시키기

728x90

[application.yml]

spring:
  thymeleaf: # Thymeleaf
    cache: false
    mode: HTML
    encoding: UTF-8
    prefix: file:src/main/resources/templates/
  resources: # Static resources
    static-locations: file:src/main/resources/static/
    cache:
      period: 0

 

캐시설정을 끄면 된다...!