본문 바로가기

기타/IntelliJ

[IntelliJ] html 서버 재시작 없이 변경 파일 실행

: spring-boot-devtools 라이브러리 추가하면 html 파일을 컴파일만 해주면 서버 재시작 없이 View 파일 변경 가능

 

 

 

# build.gradle dependencies에 spring-boot-devtools 추가
   서버 재시작 없이 Build - Recompile 만으로도 변경된 파일 확인 가능

dependencies {
	implementation 'org.springframework.boot:spring-boot-devtools'
}