码迷,mamicode.com
首页 > 其他好文 > 详细

在idea中实现热部署

时间:2020-06-16 14:45:14      阅读:51      评论:0      收藏:0      [点我收藏+]

标签:class   ide   ctrl   default   boot   file   reg   set   css   

一.配置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中实现热部署

标签:class   ide   ctrl   default   boot   file   reg   set   css   

原文地址:https://www.cnblogs.com/xianshen/p/13140794.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!