为什么要热部署
当我们修改代码之后,要查看修改之后的效果,必须手动重启该服务.热部署可以免去重启的动作,自动部署,大大节省开发时间,步骤如下:
1 Adding devtools to your project(导入依赖坐标)
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<version>2.2.7.RELEASE</version>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
2 Adding plugin to your pom.xml(添加插件坐标)
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
<addResources>true</addResources>
</configuration>
</plugin>
</plugins>
</build>