I am using a dependency as:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
<scope>runtime</scope>
</dependency>
The devtools work fine when I make changes to my .java files but doesn't work when I make changes in my static files(.html files). Also, the change is not seen when I reload the page. I have to restart the application to see the changes. And it is quite a time consuming to restart the app every time I make a few small changes.