[SpringBoot] spring-boot-devtools 라이브러리 사용 방법
2022. 10. 28. 20:55
프로그래밍/Spring Boot
spring-boot-devtools 라이브러리 사용 방법 devtools 라이브러리에서 제공하는 기능 Property Defaults Automatic Restart Live Reload Global Settings Remote Applications 보통 Automatic Restart와 LiveReload 기능을 사용하기 위해 사용함 서버를 재시작하지 않고, 클래스파일에 변경사항이 있을 시 이를 캐치하여 리로드 해줌 Automatic Restart와 LiveReload 사용 방법 1. build.gradle에 의존성 추가 developmentOnly 'org.springframework.boot:spring-boot-devtools' 2. IntelliJ 환경 설정 Preferences > Buil..