当前位置:   article > 正文

Spring Boot 入门之热部署【2】_ org.springfram

org.springframework.boot

1.热部署

    当我们修改文件和创建文件时,都需要重新启动项目。这样频繁的操作很浪费时间,配置热部署可以让项目自动加载变化的文件,省去的手动操作。

在 pom.xml 文件中添加如下配置:

  1. <!-- 热部署 -->
  2. <dependency>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-devtools</artifactId>
  5. <optional>true</optional>
  6. <scope>true</scope>
  7. </dependency>
  1. <build>
  2. <plugins>
  3. <plugin>
  4. <groupId>org.springframework.boot</groupId>
  5. <artifactId>spring-boot-maven-plugin</artifactId>
  6. <configuration>
  7. <!-- 没有该配置,devtools 不生效 -->
  8. <fork>true</fork>
  9. </configuration>
  10. </plugin>
  11. </plugins>
  12. </build>

如图在 pom.xml配置:


注意:如果配置好之后无效,下面需要修改idea中的两个配置:

  • setting –> compiler  将 Build project automatically 勾选上。如图所示

  • 快捷键ctrl + shift + alt + /,弹出框,选择Registry。

  • 勾上 Compiler autoMake allow when app running


  • 重启项目可实现热部署功能。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/421920
推荐阅读
相关标签