idea中设置springboot热部署

Posted cralor

tags:

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

在idea中设置springboot热部署,项目修改的时候不用手动重启应用

1,pom中添加依赖

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

 

2.ctrl+alt+s 打开设置 File | Settings | Build, Execution, Deployment | Compiler,选中打勾 “Build project automatically”

 

3.“Shift+Ctrl+Alt+/”(Windows) 、“Shift+CMD+Alt+/” (MAC平台),选择 “Registry” ,选中打勾 “compiler.automake.allow.when.app.running” 。

 

 

以上是关于idea中设置springboot热部署的主要内容,如果未能解决你的问题,请参考以下文章

idea内springboot项目设置热部署

IDEA-SpringBoot项目设置热部署

SpringBoot项目在IntelliJ IDEA中实现热部署

idea进行SpringBoot热部署失败的可能原因

SpringBoot入门篇--热部署

SpringBoot-03:SpringBoot+Idea热部署