熱部署(別名熱啓動),其實不少地方都在使用也很是流行且好用(如springboot,jfinal,ssm),pom.xml中加入spring
<!-- springboot熱部署 devtools 依賴包. --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> <scope>true</scope> </dependency> <build> <plugins> <!-- 這是spring boot devtool plugin --> <plugin> <!-- spring熱部署 --> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <fork>true</fork> </configuration> </plugin> </plugins> </build>