Spring boot工程如何启用热启动功能

其实只要在pom.xml文件中的<dependencies></dependencies>标签里加以下代码

1 <dependency>
2             <groupId>org.springframework.boot</groupId>
3             <artifactId>spring-boot-devtools</artifactId>
4             <scope>runtime</scope>
5         </dependency>

 

posted @ 2019-06-28 22:10  JackSon~鹤  阅读(182)  评论(0编辑  收藏  举报