사용자 도구

사이트 도구


springframework:springboot:devtools

문서의 이전 판입니다!


SpringBoot DevTools

설치

// configurations 는 일단 안해도 되는벗(springboot version따라?)
configurations {
	developmentOnly
	runtimeClasspath {
		extendsFrom developmentOnly
	}
}
 
dependencies {
	developmentOnly("org.springframework.boot:spring-boot-devtools")
}
  • java -jar로 실행될 때는 운영 시스템으로 간주하고 devtools가 비활성화 된다.
    • 단, System Property -Dspring.devtools.restart.enabled=true|false 로 제어 가능하다.

Live Reload

참조

springframework/springboot/devtools.1610933023.txt.gz · 마지막으로 수정됨: 2021/01/18 10:23 저자 kwon37xi