美文网首页右耳菌-邓小白的Java架构师的修炼之路
IDEA 下 Spring Boot 项目如何开启热部署

IDEA 下 Spring Boot 项目如何开启热部署

作者: 右耳菌 | 来源:发表于2022-04-26 22:11 被阅读0次

一、修改pom.xml

  • 文件中加入以下内容
        <!-- 开启热部署 -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
            <optional>true</optional>
        </dependency>
  • 右键pom.xml文件-> maven -> Reimport (如果开启了自动引入,则等待import完成即可)

二、修改Idea的配置

  • 点击File -> settings - > (搜索Compiler) -> 勾选 Build project automatically,然后点击应用,具体如下所示


    修改Idea配置

三、Idea 的 Registry 配置

  • 按下 Ctrl+Shift+A+/ 打开 Registry

    Ctrl+Shift+A+/

    如果无法打开,请尝试 Ctrl+Shift+A 后切换到Action的tab标签页面后搜索 Registry


    Ctrl+Shift+A
  • 开启 compiler.automake.allow.when.app.running

    image.png
  • 如果还不行,则可以 点击启动图标旁边的下拉框,选中 Edit Configurations
    修改On 'Update' actionupdate classes and resources

    修改On 'Update' action

四、此时只要修改完成后将焦点移出代码编辑框中,该项目将会自动再次部署


更多知识,请点击关注查看我的主页信息哦~

相关文章

网友评论

    本文标题:IDEA 下 Spring Boot 项目如何开启热部署

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