美文网首页
Spring Boot热部署

Spring Boot热部署

作者: 圈圈猫 | 来源:发表于2018-10-16 10:07 被阅读14次

    Spring Boot热部署,每次修改文件或者是新增一个类后都会重新启动服务,这样就不需要自己重新的点击。

    1、在工程下的pom.xml文件中添加配置

    <dependency>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-devtools</artifactId>
          <optional>true</optional>
          <scope>true</scope>
    </dependency>
    <build>
          <plugins>
              <plugin>
                  <groupId>org.springframework.boot</groupId>
                  <artifactId>spring-boot-maven-plugin</artifactId>
              </plugin>
              <plugin>
                  <groupId>org.springframework.boot</groupId>
                  <artifactId>spring-boot-maven-plugin</artifactId>
                  <configuration>
                      <!-- 没有该配置,devtools 不生效 -->
                     <fork>true</fork>
                  </configuration>
              </plugin>
          </plugins>
    </build>
    
    

    2、设置IDE

    1、点击file----->setting
    image.png
    2、按快捷键“Shift+ctrl+alt+/”, 选择Registry,选中打勾 “compiler.automake.allow.when.app.running” 。
    image.png

    相关文章

      网友评论

          本文标题:Spring Boot热部署

          本文链接:https://www.haomeiwen.com/subject/qqyoaftx.html