springboot 热部署配置

1、springboot版本:2.1.1

2、idea版本:2019

3、操作步骤:

 pom.xml增加配置:


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


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

application.yml配置:

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

 idea配置:

 

     自动:

        1)File -> Settings -> Compiler,勾选 Build Project automatically

           springboot 热部署配置_第1张图片
         2)按快捷键Ctrl+Shift+Alt+/,选择1.Registry...

springboot 热部署配置_第2张图片

         3)勾选 compiler.automake.allow.when.app.running 即可

      springboot 热部署配置_第3张图片

 

 

 

你可能感兴趣的:(java)