【SpringBoot】idea+SpringBoot熱部署設置

idea默認是不能進行自動編譯的,可是它也一樣提供了自動編譯的功能,只是須要咱們手動設置一下。
否則合併過代碼後,沒有自動編譯,就須要rebuild來查看錯誤,若是能進行自動編譯,就能夠直接提示咱們了,會省不少事兒呢。若是是常常開發頁面的話,HTML,css,js常常須要改動的,若是每次都重啓豈不累死了。廢話很少說。css

1、開啓idea自動make功能 spring

一、CTRL + SHIFT + A --> 查找make project automatically --> 選中 
二、CTRL + SHIFT + A --> 查找Registry --> 找到並勾選compiler.automake.allow.when.app.running。(或者使用快捷鍵:CTRL + SHIFT + ALT + /)app

重啓idea maven

2、使用spring-boot-1.3開始有的熱部署功能 
一、加maven依賴 ide

<dependency>  
    <groupId>org.springframework.boot</groupId>  
    <artifactId>spring-boot-devtools</artifactId>  
    <optional>true</optional>  
</dependency>


二、開啓熱部署 spring-boot

<build>  
   <plugins>  
      <plugin>  
         <groupId>org.springframework.boot</groupId>  
         <artifactId>spring-boot-maven-plugin</artifactId>  
         <configuration>  
             <fork>true</fork>  
         </configuration>  
      </plugin>  
   </plugins>  
</build>
相關文章
相關標籤/搜索