注意:默認使用Maven項目。java
springloader方式:首先在pom.xml中添加依賴spring
<!-- 構建節點 --> <build> <plugins> <!-- 在這裏添加springloader plugin--> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <dependencies> <!-- springboaded hot deploy --> <dependency> <groupId>org.springframework</groupId> <artifactId>springloaded</artifactId> <version>1.2.4.RELEASE</version> </dependency> </dependencies> <executions> <execution> <goals> <goal>repackage</goal> </goals> <configuration> <classifier>exec</classifier> </configuration> </execution> </executions> </plugin> </plugins> </build>
而後啓動,啓動有兩個方式:後端
方式1:右鍵 -> run as --> Maven build ,在Goals中輸入spring-boot:run ,而後run 便可熱啓動,此種方式有一個缺點那就是中止服務後端口仍佔用,必須在任務管理器中關閉進程。maven
方式2:下載所需jar包(spring-loader-1.2.4.RELEASE.jar),添加到項目。 在項目右鍵 run as --> Run configurations --> Arguments 中,設置VM arguments: -javaagent:.\lib\springloaded-1.2.4.RELEASE.jar -noverifyspring-boot
而後啓動ui
springloader方式只對修改返回值有效,而對添加方法無效。spa
========================================================================rest
devtools方式:code
首先添加依賴,xml
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> <scope>true</scope> </dependency>
而後添加plugin
<!-- 熱部署2:spring boot devtool plugin --> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <!-- fork: 若是沒有該項配置,devtools不會起做用,即不會restart --> <fork>true</fork> </configuration> </plugin>
而後啓動便可。
原理是修改後服務會快速重啓,深層原理是使用了兩個classloader,一個classloader加載那些不會改變的類,另外一個classloader加載會更改的類,成爲restart Classloader。
這樣代碼有更改的時候,原來的restart Classloader被丟棄,從新建立一個restart Classloader,因爲須要加載的類比較少,因此實現了較快的重啓時間(5s之內)。
對於添加方法仍有效。