其他分享
首页 > 其他分享> > SpringBoot 热部署

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

image

ctrl + shift + alt + /

image
image

Edit Configurations

image

标签:SpringBoot,配置文件,部署,spring,boot,devtools,true
来源: https://www.cnblogs.com/yizhouiqpl/p/16559372.html