Docsify/springboot/热部署.md
2023-06-13 16:37:18 +08:00

11 lines
227 B
Markdown

## 热部署
* 首先在pom.xml中增加配置
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional> <!-- 可选 -->
</dependency>
```