Spring Boot2 IDEA 热部署

Posted

tags:

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

1) MAVEN依赖

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-devtools</artifactId>
        <optional>true</optional>
    </dependency>

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

2) CTRL + SHIFT + A --> 查找make project automatically --> 选中

3) CTRL + SHIFT + A --> 查找Registry --> 找到并勾选compiler.automake.allow.when.app.running

4) properties 中 spring.thymeleaf.cache=false #thymeleaf 不要缓存,生产环境可以去掉

5) 重启生效

6)dev tools 有2个ClassLoader,一个Classloader加载Jar包,另一个热部署ClassLoader加载代码,在有代码更改的时候,废弃掉热部署ClassLoader并重新创建一个热部署ClassLoader,把会变化的类重新加载,从而实现了热部署,且由于无需再次加载jar包,速度较快。

以上是关于Spring Boot2 IDEA 热部署的主要内容,如果未能解决你的问题,请参考以下文章

Idea+Spring boot 开启热部署

IntelliJ IDEA Spring boot实现热部署

IDEA中Spring boot配置热部署无效问题解决方式(转)

Intellij IDEA 设置Spring Boot热部署

IDEA进行Spring Boot项目热部署

IDEA进行Spring Boot项目热部署