SpringBoot 在IDEA中实现热部署步骤详解(实用版)
文章目录
学习目标
快速学会在项目中使用热部署插件运行项目,提高开发效率。
具体步骤
开启IDEA的自动编译(静态)
具体步骤:打开顶部工具栏 File -> Settings -> Default Settings -> Build -> Compiler 然后勾选 Build project automatically 。
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-eyJsGO4q-1605520417281)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20201109161314792.png)]
开启IDEA的自动编译(动态)
具体步骤:同时按住 Ctrl + Shift + Alt + / 然后进入Registry ,勾选自动编译并调整延时参数。
- compiler.automake.allow.when.app.running -> 自动编译
- compile.document.save.trigger.delay -> 自动更新文件
PS:网上极少有人提到compile.document.save.trigger.delay 它主要是针对静态文件如JS CSS的更新,将延迟时间减少后,免编译直接按F5刷新页面就能看到效果!
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-WsGLetwX-1605520417283)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20201109161428118.png)]
开启IDEA的热部署策略(非常重要)
具体步骤:顶部菜单- >Edit Configurations->SpringBoot插件->目标项目->勾选热更新。
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-8U1nYINS-1605520417284)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20201109161457587.png)]
在项目添加热部署插件
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
</dependency>
关闭浏览器缓存(重要)
/dependency>
#### **关闭浏览器缓存(重要)**
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-95ce2EtH-1605520417289)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20201109161630752.png)]