热部署未生效

来源:4-1 SpringBoot 使用devtools进行热部署

慕沐0267534

2018-04-19 16:54

老师您好,我的热部署在修改完代码之后,也确实重新生成了,但是我在页面刷新确没有显示变化这是为什么呢

写回答 关注

5回答

  • 慕仰7666017
    2018-10-29 19:54:53

    在pox文件加上这

    <build>

        <plugins>

          <plugin>

            <groupId>org.springframework.boot</groupId>

            <artifactId>spring-boot-maven-plugin</artifactId>

            <configuration>

              <!-- 没有该配置,devtools 不生效 -->

              <fork>true</fork>

              <addResources>true</addResources>

            </configuration>

          </plugin>

        </plugins>

      </build>

    但是配置好无效,下面需要修改idea中的两个配置


    setting –> compiler 

    将 Build project automatically 勾选上

    alt + shift + a 搜索 registry 选第一个,弹出框后下拉找到 compiler.automake.allow.when.app.running 勾选上即可。

    热部署无效问题已解决。

    --------------------- 

    作者:bruinmin 

    来源:CSDN 

    原文:https://blog.csdn.net/android_ztz/article/details/79221753 

    版权声明:本文为博主原创文章,转载请附上博文链接!

  • 慕仙9281346
    2018-07-25 11:11:18

    class 文件没有编译

  • 影月丶
    2018-06-30 15:48:29

    pom文件里要添加fork属性

    <plugin>
       <groupId>org.springframework.boot</groupId>
       <artifactId>spring-boot-maven-plugin</artifactId>
       <configuration>
          <fork>true</fork>
       </configuration>
    </plugin>


    一叶秋才

    没用,求解

    2018-09-11 18:08:46

    共 1 条回复 >

  • 小西瓜籽
    2018-06-05 18:39:14

    当我们修改了java类后,IDEA默认是不自动编译的,而spring-boot-devtools又是监测classpath下的文件发生变化才会重启应用,所以需要设置IDEA的自动编译:

    (1)File-Settings-Compiler-Build Project automatically

    (2)ctrl + shift + alt + /,选择Registry,勾上 Compiler autoMake allow when app running

    KingS_...

    有用!哈哈哈~

    2020-01-03 11:44:26

    共 3 条回复 >

  • 慕容5086837
    2018-04-19 17:17:42

    你是不是没有配置pom.xml需要增加这段代码

     <dependency>  


                <groupId>org.springframework.boot</groupId>  


                <artifactId>spring-boot-devtools</artifactId>


                <optional>true</optional>  


    </dependency>


SpringBoot开发常用技术整合

SpringBoot 极简开发的框架整合利器

102171 学习 · 508 问题

查看课程

相似问题