直接上干货:
1、添加一个maven依赖
<!-- springboot 热部署启动依赖包 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
<scope>true</scope>
</dependency>
2、plugins稍微修改一下
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<!-- 配置此项为true -->
<fork>true</fork>
</configuration>
</plugin>
3、修改Registry
windows 上IDEA 按 Ctrl+Shift+Alt+ / 可打开菜单,点击registry
Mac 上按 shirft + alt + command + / 可打开菜单,点击registry
4、配置下application.properties
#热部署生效
spring.devtools.restart.enabled=true
#设置重启的目录
spring.devtools.restart.additional-paths=你要监听文件变化的path
5、重启下应用就好了
最后附上一个连接,里面有详细视频介绍:
http://spring.io/blog/2015/06/17/devtools-in-spring-boot-1-3