在idea中实现热部署

Posted xianshen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在idea中实现热部署相关的知识,希望对你有一定的参考价值。

一.配置IDEA自动编译开启

1.打开顶部工具栏 File -> Settings (或者otherSettings -> Default Settings ) -> Build -> Compiler (或者ctrl+shift+A,输入Compiler)然后勾选 Build project automatically

技术图片

 

 2.同时按住 Ctrl + Shift + Alt + / 然后进入Registry ,勾选自动编译  ->  compiler.automake.allow.when.app.running

技术图片

 

 拓展:

  • compile.document.save.trigger.delay -> 自动更新文件

PS:它主要是针对静态文件如JS CSS的更新,将延迟时间减少后,直接按F5刷新页面就能看到效果!

二.在项目pom.xml添加热部署插件jar包(可选)

<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-devtools</artifactId>
  <optional>true</optional>
</dependency>

三.关闭浏览器缓存

F12或者"Ctrl+Shift+I",打开开发者工具,"Network“选项卡中勾选"Disable Cache(while DevTools is open)"

技术图片

 

以上是关于在idea中实现热部署的主要内容,如果未能解决你的问题,请参考以下文章

在idea中实现热部署

通过spring-boot-devtools在IDEA中实现热部署

SpringBoot 在IDEA中实现热部署

SpringBoot 在IDEA中实现热部署

SpringBoot 在IDEA中实现热部署(实用版)

Intellij IDEA中实现热部署