zlb

Spring Boot 3.x 全新的热部署配置方式(IntelliJ IDEA 2023.1)

第一步,在 pom.xml 文件中添加依赖

xml复制代码<!--热部署配置 -->
 <dependency>
     <groupId>org.springframework.boot</groupId>
     <artifactId>spring-boot-devtools</artifactId>
     <!-- 表示依赖不向下传递 -->
     <optional>true</optional>
 </dependency>

第二步,配置 Build project automatically

如果你用的是 Windows 系统,请按照 file -> settings -> Build, Execution, Deployment -> compiler 这个路径找到 build project automatically 并勾上,最后 Apply 和 OK 即可;

如果你用的是 Mac 系统,请按照 IntelliJ IDEA -> settings -> Build, Execution, Deployment -> compiler 这个路径找到 build project automatically 并勾上,最后 Apply 和 OK 即可。

01.png

第三步,开启允许在运行中修改文件

如果你用的是 Windows 系统,请按照 file -> settings -> Advanced Settings 这个路径找到 Allow auto-make to start even if developed application is currently running 并勾上,最后 Apply 和 OK 即可;

如果你用的是 Mac 系统,请按照 IntelliJ IDEA -> settings -> Advanced Settings 这个路径找到 Allow auto-make to start even if developed application is currently running 并勾上,最后 Apply 和 OK 即可;

在这里插入图片描述

原创链接:https://juejin.cn/post/7244174500772790329

posted on 2024-01-18 16:14  zlb  阅读(17)  评论(0编辑  收藏  举报

导航