Spring Boot 集成开发环境调试(二)
<!--集成开发调试环境-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
当我们改变静态资源的时候,不需要重启springboot,直接刷新页面即可。
<!--集成开发调试环境-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
当我们改变静态资源的时候,不需要重启springboot,直接刷新页面即可。