idea设置热部署

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

具体步骤
一、开启IDEA的自动编译(静态编译)
操作步骤:打开顶部工具栏 File -> Settings -> Default Settings -> Build -> Compiler 然后勾选 Build project automatically 。
idea设置热部署_第1张图片

二、开启IDEA的自动编译(动态编译)
操作步骤:同时按住 Ctrl + Shift + Alt + / 然后进入Registry ,勾选自动编译并调整延时参数。
idea设置热部署_第2张图片

compiler.automake.allow.when.app.running -> 自动编译
compile.document.save.trigger.delay -> 自动更新文件
三、开启IDEA的热部署策略
操作步骤:顶部菜单- >Edit Configurations->SpringBoot插件->目标项目->勾选热更新。
idea设置热部署_第3张图片

四、在项目添加热部署插件
操作步骤:在maven项目中的pom.xml中引入以下依赖

<dependency>
      <groupId>org.springframework.bootgroupId>
      <artifactId>spring-boot-devtoolsartifactId>
      <scope>runtimescope>
dependency>

五、关闭浏览器缓存
操作步骤:以Goole浏览器为例,打开F12的Network选项栏,然后勾选【✅】Disable cache 。
idea设置热部署_第4张图片
原文链接:https://blog.csdn.net/qq_19309473/article/details/100191463

你可能感兴趣的:(A,intellij-idea)