1、file setting 中找到 Build project automatically 自动对工程进行build
2、在pom文件中加入热部署信息
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
在build节点中加入
<configuration>
<fork>
true
</fork>
</configuration>
如下
就可以实现热部署啦