[Spring Boot] IntelliJ에서 Live Reload 설정하기
Live Reload
- Live Reload라는 기능은 Spring Boot로 개발하면서 자바 소스를 수정하고 저장하면 자동으로 재시작을 해주는 기능이다.
1. spring-boot-devtools 의존성 추가하기
1 | developmentOnly 'org.springframework.boot:spring-boot-devtools' |
2. application.yml에 추가하기
1 | spring: |
3. Intelli J 설정 수정하기
Settings > Build, Execution, Deployment > Compiler > 에 Build project automatically 활성화
4. registry 수정하기
Find Action (Ctrl + Shift + A) –> “registry” 검색 –> compiler.automake.allow.when.app.running Value 체크
[Spring Boot] IntelliJ에서 Live Reload 설정하기
https://devch.co.kr/2021/07/16/SPRINGBOOT-IntelliJ-21-07-16/