[Java] Spring Boot / 저장시 프로그램 자동 재시작, 적용, live reload

Onam Kwon·2022년 11월 9일
1

Java

목록 보기
7/7

저장시 Live reload

  • 코드 수정 후 저장시 프로그램을 수동으로 재시작 할 필요 없이 자동으로 적용하는 방법.
  • 본인은 맥에서 IntelliJ를 사용중임.
    • 맥이 아니어도 설정에서 하는게 전부라 따라가면서 하면 될거같습니다.

dependencies

dependencies {
	implementation 'org.springframework.boot:spring-boot-devtools:2.7.4'
}
  • 디펜던시에 위의 devtools 추가.

Preferences

  • IntelliJ - Preferences - Compiler - check Build project automatically

  • IntelliJ - Preferences - Build Tools - check Reload project after changes in the build scripts
  • IntelliJ - Preferences - Build Tools - check Any changes

  • IntelliJ - Preferences - Advanced Settings - check Allow auto-make to start even if developed application is currently running
  • 적용 후 확인.
profile
권오남 / Onam Kwon

0개의 댓글