IDEA 下 Spring Boot 项目如何开启热部署
2022-04-26 本文已影响0人
右耳菌
一、修改pom.xml
- 文件中加入以下内容
<!-- 开启热部署 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
- 右键pom.xml文件-> maven -> Reimport (如果开启了自动引入,则等待import完成即可)
二、修改Idea的配置
-
点击File -> settings - > (搜索Compiler) -> 勾选 Build project automatically,然后点击应用,具体如下所示
修改Idea配置
三、Idea 的 Registry 配置
-
按下 Ctrl+Shift+A+/ 打开 Registry
Ctrl+Shift+A+/
如果无法打开,请尝试 Ctrl+Shift+A 后切换到Action的tab标签页面后搜索 Registry
Ctrl+Shift+A -
开启 compiler.automake.allow.when.app.running
image.png
-
如果还不行,则可以 点击启动图标旁边的下拉框,选中 Edit Configurations
修改On 'Update' action
修改On 'Update' action 为 update classes and resources
四、此时只要修改完成后将焦点移出代码编辑框中,该项目将会自动再次部署
更多知识,请点击关注查看我的主页信息哦~