가자공부하러!

Spring Boot devtools 원하는 시점에 웹 리소스 새로고침시키기 본문

공부/Java

Spring Boot devtools 원하는 시점에 웹 리소스 새로고침시키기

오피스엑소더스 2020. 10. 10. 16:31

1. 디펜던시 추가

// gradle
dependencies {
    ...
    implementation 'org.springframework.boot:spring-boot-devtools'
    ...
}
  1. 적용 확인

  2. 새로고침

    • 단축키 : shift + cmd + F9
    • Build -> Recompile
Comments