IDEA中SpringBoot项目热部署

一、在pom添加依赖



    org.springframework.boot
    spring-boot-devtools
    true

 

二、在yml添加

spring:
  devtools:
  restart:
    additional-paths: classpath:src/main/java

 

三、修改idea配置

File-Settings-Compiler-Build Project automatically

IDEA中SpringBoot项目热部署_第1张图片

按住以下快捷键,唤出 Registry

ctrl + shift + alt + /,选择Registry,勾上 Compiler autoMake allow when app running

IDEA中SpringBoot项目热部署_第2张图片

你可能感兴趣的:(IDEA,IDEA)