# 2.Spring Boot DevTools
热部署: classpath 路径下发生变化,项目就会自动重启,极大地提高了项目的开发速度。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>