在IDEA 中配置springboot的热重载

在IDEA 中配置springboot的热重载

一、在pom文件中添加依赖和插件
1、添加依赖

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

2、添加插件

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

二、在IDEA中进行设置、
1、
在IDEA 中配置springboot的热重载_第1张图片
2、
在IDEA中使用快捷键 ctrl+alt+shift+/选择Registry,在Registry列表中找到 compiler.automake.allow.when.app.running并勾选
在IDEA 中配置springboot的热重载_第2张图片
说明:
1、
IDEA默认的热重载时间为3秒,所以每次改完代码后需要等3秒左右项目才会重启,如果觉得太慢了可以自行修改重载时间。
在IDEA中使用快捷键 ctrl+alt+shift+/选择Registry,在Registry列表中找到 compiler.automake.postpone.when.idlw.less.thancompiler.automake.postpone.when.idlw.less.than进行修改(单位为毫秒)。

2、
IDEA的热重载并不会加载所有的类,它只会重新加载变化的类。所以重载速度会很快。

你可能感兴趣的:(springboot)