SpringBoot 热部署
作者:互联网
添加依赖
<!-- 热部署 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
<version>2.2.2.RELEASE</version>
</dependency>
配置文件
spring:
devtools:
restart:
enabled: true # 开启热部署
settings
ctrl + shift + alt + /
Edit Configurations
标签:SpringBoot,配置文件,部署,spring,boot,devtools,true 来源: https://www.cnblogs.com/yizhouiqpl/p/16559372.html