IDEA(2020.1)使用springboot热部署

Posted zuo-shuai

tags:

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

1.pom.xml文件中引入热部署依赖

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

2.设置项目自动构建

设置路径(快捷键Ctrl+Alt+S):File -> Settings -> Build, Execution, Deployment -> Compiler

技术图片

3.允许项目启动时自动构建

设置路径:打开maintenance面板(快捷键Crtl+Alt+Shift+/) -> 选择[1. Registry...] -> 勾选[compiler.automake.allow.when.app.running]

技术图片
技术图片

4.重新启动IDEA(稳妥起见)

如果没有生效,请尝试清缓存刷新。Chrome浏览器快捷键Ctrl+F5


以上是关于IDEA(2020.1)使用springboot热部署的主要内容,如果未能解决你的问题,请参考以下文章

idea 热部署插件 Jrebel+Xrebel 以及没有效果的原因

SpringBoot+gradle+idea实现热部署和热加载

springboot 热加载的问题 idea下的springboot热加载的

idea springboot热部署无效问题

idea 使用springboot热部署为啥不顶用

在 IDEA 中使用 JRebel 实现 SpringBoot 热部署