SpringBoot:使用spring-boot-devtools进行热部署不生效的问题解决方法

在idea上怎么才能使用Spring的热部署

(1)在Maven中添加依赖

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

(2)在插件配置

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

但是,为什么配置了还是没有用呢 ?!

这是因为idea默认是没有自动编译的,我们这里需要添加修改配置.打开设置

(1)File-Settings-Compiler-Build Project automatically
SpringBoot:使用spring-boot-devtools进行热部署不生效的问题解决方法_第1张图片
(2)ctrl + shift + alt + /,选择Registry,勾上 Compiler autoMake allow when app running
SpringBoot:使用spring-boot-devtools进行热部署不生效的问题解决方法_第2张图片

你可能感兴趣的:(springboot)