dependencies {

    compile("org.springframework.boot:spring-boot-devtools")

}

spring:

  devtools:

    livereload:

      enabled: true

 

spring.devtools.livereload.enabled=true

OR

 

dependencies {

    runtime('org.springframework.boot:spring-boot-devtools')

}

 

http://blog.egstep.com/spring-boot/2017/12/10/springboot-reload/

Spring Boot 개발 시 자동 리로드 Reload

Introduction 스프링 부트 개발 중 코드 변경 시, 자동 리로드 되게 하는 방법

blog.egstep.com



https://stackoverflow.com/questions/56047894/gradle-subproject-dependecies-does-not-work-but-same-dependencies-works-fine-in

Gradle subproject dependecies does not work but same dependencies works fine in main gradle

I have been working on multi module gradle project for spring boot devtools. Here is the github repo - GitHub Repo -spring-boot-dev-tools -src/main -java/com/jhooq/springboot/devtools -res...

stackoverflow.com

 

https://docs.spring.io/spring-boot/docs/2.1.5.RELEASE/reference/html/using-boot-devtools.html

20. Developer Tools

Applications that use spring-boot-devtools automatically restart whenever files on the classpath change. This can be a useful feature when working in an IDE, as it gives a very fast feedback loop for code changes. By default, any entry on the classpath tha

docs.spring.io

 

Posted by 張's blog
,