当前位置:首页 > 编程语言 > 正文

Spring Boot 实现热部署

11-19 编程语言

标签:end   文件   too   nal   framework   spring   group   conf   style   

<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-devtools</artifactId>
   <optional>true</optional>
</dependency>
<plugin>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-maven-plugin</artifactId>
   <configuration>
      <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
   </configuration>
</plugin>

 

 CTRL F9 刷新

 

Spring Boot 实现热部署

标签:end   文件   too   nal   framework   spring   group   conf   style   

温馨提示: 本文由杰米博客推荐,转载请保留链接: https://www.jmwww.net/file/biancheng/12154.html