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