SpringBoot项目热部署

// 开发大型maven项目时 对项目代码进行更正需要对项目进行重启,但是连续重启大幅度降低开发效率,记录SpringBoot项目热部署的步骤

 按两下shift键 搜索registry

// 添加pom热部署依赖

 <!-- 热部署DevTools -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
        </dependency>

  

原文地址:https://www.cnblogs.com/walxt/p/14327906.html