SpringBoot拾级而上·热部署

spring-boot-devtools是一个为开发者服务的一个模块,其中最重要的功能就是自动应用代码更改到最新的App上面去。
原理是在发现代码有更改之后,重新启动应用,但是速度比手动停止后再启动更快。其深层原理是使用了两个ClassLoader,一个Classloader加载那些不会改变的类(第三方Jar包),另一个ClassLoader加载会更改的类,称为restart ClassLoader,这样在有代码更改的时候,原来的restart ClassLoader被丢弃,重新创建一个restart ClassLoader,由于需要加载的类相比较少,所以实现了较快的重启时间。即devtools会监听classpath下的文件变动,并且会立即重启应用(发生在保存时机)

这里介绍的是Idea&Gradle的配置方式,配置步骤如下:
一、引入starter
//热部署
compile("org.springframework.boot:spring-boot-devtools")

二、开启自动编译
1、进入Registry界面

windows:ctrl + alt + shift + /
mac: command + option + shift + /

弹出以下界面,点击Registry,


Registry.png

2、勾选compiler.automake.allow.when.app.running


Registry2.png

3、进入idea的设置页面,Build,Execution,Deployment - Compiler,勾选Build project automatically
Build project automatically.png

重新运行项目,热部署就生效了。

我们测试一下,启动后修改tomcat端口从8081改成8083,
我们在控制台可以看到如下的日志


image.png

你可能感兴趣的:(SpringBoot拾级而上·热部署)