IDEA实现SpringBoot热部署

1.pom.xml添加依赖

<dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-devtoolsartifactId>
            <scope>runtimescope>
            <optional>trueoptional>
dependency>

2.IDEA Settings->Build,Execution,Deployment->Compiler  开启Build project automatically

IDEA实现SpringBoot热部署_第1张图片

3.IDEA快捷键 ctrl+shift+a,输入Registry,找到下面这行,开启。

 

 以上即可实现热部署,前后台代码修改都可不用再次部署运行。

 

你可能感兴趣的:(IDEA实现SpringBoot热部署)