순간을 기록으로

[Spring] Spring Boot Devtools 본문

Development/Spring

[Spring] Spring Boot Devtools

luminous13 2021. 11. 17. 12:40

 

Spring Boot Devtools Module란?

개발시 유용한 기능을 제공하는 모듈

  1. 애플리케이션 자동 시작: 파일이 변경될 때마다 실행 버튼을 누르지 않아도 자동으로 재시작을 해주는 기능
  2. Live Reload: 정적 파일(html, css, js) 수정 시 새로고침 없이 바로 적용할 수 있는 기능

 

 

적용하기

build.gradle에 의존성 추가

dependencies {
	developmentOnly("org.springframework.boot:spring-boot-devtools")
}

 

Automatic Restart 적용하기

  1. <shift>키를 두 번 연속 눌러 모든 항목을 검색할수 있는 검색창 불러오기
  2. registry 검색하기
  3. app.running 체크하기
  4. File - Setting - Build, Execution, Deployment - Compiler 들어가서 Build project Automatically 적용하기

 

Comments