1. 程式人生 > >設定springboot為熱部署

設定springboot為熱部署

eclipse中這樣設定就可以

在pom.xml中設定

<!-- 配置springBoot專案的熱部署啟動 -->
<dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-devtools</artifactId>
      <optional>true</optional>
</dependency>

idea需要這樣設定