项目开发过程中,常常会改动页面数据或者修改数据结构,为了显示改动效果,往往需要重启应用查看改变效果,其实就是重新编译生成了新的 Class
文件,这个文件里记录着和代码等对应的各种信息,然后Class
文件将被虚拟机的 ClassLoader
加载。而热部署正是利用了这个特点,它监听到如果有Class
文件改动了,就会创建一个新的 ClaassLoader
进行加载该文件,经过一系列的过程,最终将结果呈现在我们眼前。
增加依赖
Spring Boot
实现热部署很简单,在pom.xml
中增加相关依赖
<!-- spring-boot-devtools热启动依赖包 start-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
<scope>true</scope>
</dependency>
<!-- spring-boot-devtools热启动依赖包 end-->
IDEA设置
1.左上角依次找到File
——Settings...
——Build,Execution,Deployment
——Compiler
,勾选Build project automatically
,然后右下角Apply
——OK
:
2.使用 Ctrl+Shift+A
快捷键搜索"Registry"
,选择搜索出来的第一个:
3.找到compiler.automake.allow.when.app.running
,勾选,Close
关闭:
4.最后,点击右上角的edit configurations
,修改一下两项