美文网首页
3、热部署

3、热部署

作者: 沁园Yann | 来源:发表于2020-06-10 09:02 被阅读0次

    1、添加依赖

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

    2、在父工程添加maven插件

    <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>
    

    3、开启自动编译


    image.png

    4、
    按住 ctrl + shift + alt + / ,然后点击 Registry


    image.png
    image.png

    配置完成,重启Idea即可。

    相关文章

      网友评论

          本文标题:3、热部署

          本文链接:https://www.haomeiwen.com/subject/kxcutktx.html