idea+spring-boot+devtools熱部署

 

idea+spring-boot+devtools熱部署

標籤: spring-boot
 分類:
maven dependencies增長
[html] view plain copy
 
  1. <dependency>  
  2.     <groupId>org.springframework.boot</groupId>  
  3.     <artifactId>spring-boot-devtools</artifactId>  
  4.     <optional>true</optional>  
  5. </dependency>  

project增長
[html] view plain copy
 
  1. <build>  
  2.     <plugins>  
  3.         <plugin>  
  4.             <groupId>org.springframework.boot</groupId>  
  5.             <artifactId>spring-boot-maven-plugin</artifactId>  
  6.             <configuration>  
  7.             <!--fork :  若是沒有該項配置,肯呢個devtools不會起做用,即應用不會restart -->  
  8.             <span style="white-space:pre">  </span><fork>true</fork>  
  9.             </configuration>  
  10.         </plugin>  
  11.     </plugins>  
  12. </build>  

idea設置
 
 
ctrl+shift+alt+/
 
 
重啓項目便可。
相關文章
相關標籤/搜索