[IntelliJ] 인텔리제이에서 스프링부트 Devtools가 실행되지 않을 때
2022. 11. 10. 20:37
IDE/IntelliJ
Devtools를 bulid.gradle 파일의 dependencies에 추가해줬는데 작동하지 않는 경우 implementation 'org.springframework.boot:spring-boot-devtools' 1. Preferences > Build, Execution, Deployment > Compiler ✅ Build project automatically 2. Preferences > Advanced Settings ✅ Show only line bookmarks in popup Devtools가 정상 작동함👏
[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..