Hot change frontend when use Spring Boot
It need when you want edit frontend (html, jsp and other) and show this changes without restarting app.
add spring-boot-devtools in dependencies
In maven:
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>
</dependencies>