Spring Boot热部署

  spring-boot-devtools是为开发者服务的一个模块,其中最重要的功能是自动应用代码更新到App上面去。

一、热部署原理

  原理是在发现代码有更改之后,重新启动应用,但是速度比手动停止后再启动更快。通过使用两个ClassLoader,一个ClassLoader加载那些不会改变的类(第三方jar包),另一个ClassLoader加载会改变的类,称为restart ClassLoader,这样在有代码更改的时候,原来的restart ClassLoader被丢弃,重新创建一个restart ClassLoader,由于需要加载的类相对较少,所以实现了较快的重启时间。
  即devtools会监听classpath下的文件变动,并且会立即重启应用。

二、热部署实现方式

1.增加maven依赖


            org.springframework.boot
            spring-boot-devtools
            true

2.开启热部署


    
        
            org.springframework.boot
            spring-boot-maven-plugin
            
                true//该配置依据idea环境非必须
            
        
    

三、在idea中额外配置

1.ctrl+shift+A→查找make project automatically→选择

Spring Boot热部署_第1张图片
111.png

2.ctrl+shift+A→查找Registry→选择compiler.automake.allow.when.app.running

3.重启idea

你可能感兴趣的:(Spring Boot热部署)