juwon-code / common-blog-project

simple project for study.
0 stars 0 forks source link

[Bug] 리소스 변경시 Live Reload 무반응 #6

Closed juwon-code closed 10 months ago

juwon-code commented 10 months ago

Description

정적 리소스, 동적 리소스 코드를 수정했을 때, 애플리케이션이 자동으로 재시작되지 않는 문제가 발생합니다.

Reproduce

  1. resources/templates 디렉토리의 파일을 수정합니다.
  2. 서버가 재실행되지 않고, 브라우저에 반영되지 않습니다.

Expected

리소스가 수정될 때, 자동으로 서버가 재실행되어야 합니다.

juwon-code commented 10 months ago

Solution

애플리케이션 실행 옵션

Intellij 환경 설정

Dependency 설정

Thymeleaf Settings

spring.thymeleaf.cache=false


※ 단, 배포할 때는 live reload 기능은 끄고, cache는 활성화해야 합니다.

### Reference
- [스프링부트 프로젝트의 클래스 또는 리소스 수정 후 자동으로 재시작하기](https://colabear754.tistory.com/196)