三步搞定IDEA集成热部署

时间:2023-01-01 05:29:37

第一步、在你的SpringBoot项目中添加DevTools依赖

<!-- 热部署DevTools -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>

第二步、打开 Settings,点击 Build,Execution,Deployment设置下的Compiler

三步搞定IDEA集成热部署
第三步、双击shift按键(默认是两次shift),会出来一个搜索框,搜索registry,点击action第一个
三步搞定IDEA集成热部署

三步搞定IDEA集成热部署