SpringBoot:使用spring-boot-devtools进行热部署不生效的问题解决方法

在idea上怎么才能使用Spring的热部署

(1)在Maven中添加依赖

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

(2)在插件配置

    <plugins>
        <!-- 这是spring boot devtool plugin -->
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
            <configuration>
                <!--fork :  如果没有该项配置,肯呢个devtools不会起作用,即应用不会restart -->
                <fork>true</fork>
            </configuration>
        </plugin>
    </plugins>

但是,为什么配置了还是没有用呢 ?!

这是因为idea默认是没有自动编译的,我们这里需要添加修改配置.打开设置

(1)File-Settings-Compiler-Build Project automatically
SpringBoot:使用spring-boot-devtools进行热部署不生效的问题解决方法
(2)ctrl + shift + alt + /,选择Registry,勾上 Compiler autoMake allow when app running
SpringBoot:使用spring-boot-devtools进行热部署不生效的问题解决方法