springboot开启热部署之Idea&Gradle

一、引入starter

//热部署
compile("org.springframework.boot:spring-boot-devtools")

二、开启自动编译

第一步

windows:ctrl + alt + shift + /

mac: command + alt + shift + /

弹出以下界面

这里写图片描述

第二步

点击Registry,勾选compiler.automake.allow.when.app.running

这里写图片描述

第三步

勾选 Make/Build project automatically

这里写图片描述

重新运行项目,随意改一个java类,看看项目是不是重启了^_^

补充:springboot支持特定文件来触发重启,感兴趣的可以研究一下

你可能感兴趣的:(☀框架技术)