캐싱기능 꺼두기, 수정사항이 있을떄 애플리케이션을 껐다 켜야하는 불편함 해소, 수정사항을 실시간으로 반영 등의 기능을 한다고 한다. 사용하는 방법은 다음과 같다.
1.build.gradle에 의존성 추가
configurations {
developmentOnly
runtimeClasspath {
extendsFrom developmentOnly
}
}
dependencies {
developmentOnly("org.springframework.boot:spring-boot-devtools")
}
Registry검색 후 compiler.automake.allow.when.app.running 을 체크하기.
Preference 의 Build, Execution, Deployment -> Compiler -> Build project automatically 를 체크하기.
Edit Configuration 버튼누르고 Spring Boot의 application 에서 On 'Update' action 과 On frame deactivation 값을 모두 Update resources 로 설정하기.
크롬 확장자 설치하기