I was just having the exact same issue. Did you check if your application.properties
file enables the live reload feature?
# Development Tools
spring.devtools.livereload.enable=true
Also, I assume you have the plugin as a dependency in your build.gradle
file:
// ...
dependencies {
developmentOnly("org.springframework.boot:spring-boot-devtools")
}