【笔记】SpringBoot热部署

前言

SpringBoot热部署

添加依赖

  • 编辑pom.xml配置文件
1
2
3
4
5
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
</dependency>

完成