美文网首页
SpringBoot热部署(IDEA)

SpringBoot热部署(IDEA)

作者: Laity_9c91 | 来源:发表于2021-08-29 17:24 被阅读0次

Springboot热部署只需4步,即可

1. 在pom.xml中加载如下热部署依赖

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
            <optional>true</optional>
        </dependency>
2. 点击IDEA设置,勾选如图中的"Build project automatically",点击Ok
image.png
3. 在IDEA中使用快捷键" Ctrl+Shift+Alt+/ ",如下图:
image.png

4. 进入之后,勾选即可

image.png

到此热部署配置成功,修改代码之后无需重启项目点击保存之后,在浏览器上刷新页面即可

相关文章

网友评论

      本文标题:SpringBoot热部署(IDEA)

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