25. Spring Boot - Spring Boot Devtools
1) 제공하는 기능 1. Property Defaults 2. Automatic Restart 3. Live Reload 4. Global Settings 5. Remote Applications 1-1) Property Defaults Spring에서 제공하는 thymeleaf는 기본적으로 캐싱 기능을 사용함. 하지만 개발과정에서 캐싱이 되어 있다면 thymeleaf 파일을 수정해도 반영되지 않음. Application cache 설정값을 false로 수정해야 함. 이러한 작업을 Spring Boot DevTools에서 제공함. 개발 시점과 배포 시점에 다른 설정을 기본적으로 개발 단계에 맞춰 설정해줌. 예를 들어 템플릿 엔진의 캐싱 기능을 개발 단계에서 자동으로 꺼주는 역할을 함. 따라서 개발자는 설..
Spring boot/Dependencies
2021. 5. 16. 08:54