[SpringBoot] Spring Boot Devtools
·
Web & Android/SpringBoot
1. Spring Boot Devtools 애플리케이션 개발 시 유용한 기능들을 제공하는 모듈 2. Spring Boot Devtools 제공 대표적인 기능 ① Automatic Restart - classpath 에 있는 파일 변경 시 애플리케이션 자동으로 재시작 ② Live Reload - 정적 파일 수정 시 새로 고침 없이 바로 적용 ③ Property Defaults - 캐싱 기능을 false 로 설정 3. Spring Boot Devtools 의존성 주입 dependencies { developmentOnly 'org.springframework.boot:spring-boot-devtools' } 4. Automatic Restart ①, ②번은 버전이 바뀌면서 없어진 건지 안보임 ① shift..