devtools简介
spring-boot-devtools会监听classpath下的文件变动,并且会立即重启应用(发生在保存时机),因为其采用的虚拟机机制,该项重启时很快的
spring-boot-devtools主要有两个类加载器:
base classloader(Base类加载器),加载不改变的class,例如:第三方提供的jar包等
restart classloader (Restart类加载器),加载正在开发的class
因为重启的时候只加载了正在开发的class,没有重新加载第三方的jar包,所以重启会很快
IDEA下配置热部署
2:
3:
Ctrl + Shift + A,输入Registry,选中第一个回车,勾选 compiler.automake.allow.when app.running
4:
pom.xml中引入devtools的依赖
org.springframework.boot
spring-boot-devtools
true
5:
pom.xml中添加spring-boot-maven-plugin插件,并且配置true (非必须)
org.springframework.boot
spring-boot-maven-plugin
true
6:
配置application.yml文件(或application.properties)
spring:
thymeleaf:
cache: true # false:关闭缓存,即时刷新
devtools:
restart:
enabled: true # 启用热部署
additional-paths: src/main/java # 设置需重启的目录,目录下的文件改变时会restart