springboot 熱部署配置(springloaded)
阿新 • • 發佈:2018-12-21
注意此方法對於新增加的方法不起作用
首先還是pom.xml增加配置資訊
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <dependencies> <!--springloaded 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>
在專案目錄下建立資料夾lib 放入springloaded-1.2.4.RELEASE.jar這個jar包
右鍵run configurations 在arguments——>vmarguments增加
-javaagent:.\lib\springloaded-1.2.4.RELEASE.jar -noverify
然後run as也可以進行熱啟動 不存在埠未關閉情況