springboot 热加载 热部署 可用

1.导入依赖

  
            org.springframework.boot
            spring-boot-devtools
            runtime
            true
        

 在plugin中添加fork 为true


        
            
                org.springframework.boot
                spring-boot-maven-plugin
                
                    true
                
            
        
    

2 添加配置文件

spring:
  devtools:
    restart:
      additional-paths: src/main/java
      enabled: true

3. 修改idea 配置 setting-》

springboot 热加载 热部署 可用_第1张图片

4. shift+ctrl+alt+/ 

springboot 热加载 热部署 可用_第2张图片

springboot 热加载 热部署 可用_第3张图片

 

到此 热部署就完成了

只要修改保存就可以重新启动

你可能感兴趣的:(热部署,热加载,spring,spring,boot,java)