Eclipse SpringBoot 关闭热加载

Posted Se7end

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Eclipse SpringBoot 关闭热加载相关的知识,希望对你有一定的参考价值。

前段时间使用热加载,感觉很新鲜。

开发阶段确实比较好用。

所以来分享一个关闭热加载的方法。

 

开启热加载:

1.pom.xml中添加

<plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    <configuration>
        <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
    </configuration>
</plugin>

2.Eclipse设置:

把Build Automatically勾选上。

 

启动修改。

修改代码之后项目就会重新启动。

1.java代码

2.配置文件

3.ftl

 

 

关闭热加载

Eclipse设置:

把Build Automatically设置取消选择就可以了。

 

以上是关于Eclipse SpringBoot 关闭热加载的主要内容,如果未能解决你的问题,请参考以下文章

Eclipse Spring Boot实现热部署

SpringBoot Eclipse 热部署

eclipse/sts springboot 热部署

Eclipse Spring boot项目热部署

springboot 热加载的问题 idea下的springboot热加载的

热部署简介及在eclipse安装插件JRebel进行热部署