springboot(4)springboot热部署插件及idea热部署

SpringBoot2.x使用Dev-tool热部署
简介:介绍什么是热部署,使用springboot结合dev-tool工具,快速加载启动应用

官方地址:https://docs.spring.io/spring-boot/docs/2.1.0.BUILD-SNAPSHOT/reference/htmlsingle/#using-boot-devtools
核心依赖包:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
添加依赖后,在ide里面重启应用,后续修改后马上可以生效

classloader

不被热部署的文件
1、/META-INF/maven, /META-INF/resources, /resources, /static, /public, or /templates
2、指定文件不进行热部署 spring.devtools.restart.exclude=static/**,public/**
3、手工触发重启 spring.devtools.restart.trigger-file=trigger.txt
改代码不重启,通过一个文本去控制

https://docs.spring.io/spring-boot/docs/2.1.0.BUILD-SNAPSHOT/reference/htmlsingle/#using-boot-devtools-restart-exclude

注意点:生产环境不要开启这个功能,如果用java -jar启动,springBoot是不会进行热部署的

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】关闭:

上一篇:SpringBoot2.x配置热部署


下一篇:4、在IntelliJ idea 中基于spring-boot-devtools 实现项目热启动