springcloud笔记一idea配置热部署

Posted 今夜月色很美

tags:

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

一、项目pom.xml添加devtools依赖

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

二、父工程添加插件

<build>
    <plugins>
      <plugin>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
        <configuration>
          <fork>true</fork>
          <addResources>true</addResources>
        </configuration>
      </plugin>
    </plugins>
  </build>

三、设置自动构建

File -> Settings -> Build,Execution,Deployment -> Compiler -> 选中Build project automatically
在这里插入图片描述

四、按快捷键 “ctrl+shift+alt+/”

显示如下菜单,点击Registry选项

在这里插入图片描述
找到

compiler.automake.allow.when.app.running

actionSystem.assertFocusAccessFromEdt

选项,选中后面的复选框
在这里插入图片描述

五、重启idea

以上是关于springcloud笔记一idea配置热部署的主要内容,如果未能解决你的问题,请参考以下文章

IDEA热部署配置

SpringCloud Nacos配置管理 -- 配置热更新多环境配置共享IDEA按不同环境启动的小技巧

idea内springboot项目设置热部署

IntelliJ IDEA 怎么热部署,每次修改java文件就得重启tomcat

Intellij IDEA 4种配置热部署的方法

Intellij IDEA 4种配置热部署的方法