스프링 부트 개발 시 서버가 돌아가는 와중에 코드 변경 후 저장을 하면 서버를 재시작하지 않아도 자동으로 빌드가 되고 적용을 시킬 수 있다.
build.gradle에 devtools 라이브러리 추가. Spring Boot Devtools는 스프링 부트 개발 시 도움을 주는 도구이다.
developmentOnly 'org.springframework.boot:spring-boot-devtools'

File → Settings → Compiler → Build project automatically 체크

Advanced Settings → Compiler → Allow auto-make to start even if developed application is currently running 체크
