: spring-boot-devtools 라이브러리 추가하면 html 파일을 컴파일만 해주면 서버 재시작 없이 View 파일 변경 가능
# build.gradle dependencies에 spring-boot-devtools 추가
서버 재시작 없이 Build - Recompile 만으로도 변경된 파일 확인 가능
dependencies {
implementation 'org.springframework.boot:spring-boot-devtools'
}
'기타 > IntelliJ' 카테고리의 다른 글
[IntelliJ] Git Bash 연동 (0) | 2021.10.20 |
---|---|
[IntelliJ] gradle을 통하지 않고 IntelliJ에서 직접 실행 (0) | 2021.10.18 |
[IntelliJ] 서버 포트 변경 (0) | 2021.10.18 |