Loading

IDEA如何使用热部署方式启动项目?

热部署可以使的修改代码后,无须重启服务器,就可以加载更改的代码。

具体步骤

一、开启IDEA的自动编译(静态编译)

操作步骤:打开顶部工具栏 File -> Settings -> Default Settings -> Build -> Compiler 然后勾选 Build project automatically 。

二、开启IDEA的自动编译(动态编译)

操作步骤:同时按住 Ctrl + Shift + Alt + / 然后进入Registry ,勾选自动编译并调整延时参数。

  • compiler.automake.allow.when.app.running -> 自动编译
  • compile.document.save.trigger.delay -> 自动更新文件

三、开启IDEA的热部署策略

操作步骤:顶部菜单- >Edit Configurations->SpringBoot插件->目标项目->勾选热更新。

四、在项目添加热部署插件

操作步骤:在maven项目中的pom.xml中引入以下依赖

<dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-devtools</artifactId>
      <scope>runtime</scope>
</dependency>

五、关闭浏览器缓存

操作步骤:以Goole浏览器为例,打开F12的Network选项栏,然后勾选【✅】Disable cache 。

posted @ 2019-09-02 09:26  Roc-xb  阅读(13)  评论(0编辑  收藏  举报

易微帮源码


易微帮官网