其他分享
首页 > 其他分享> > 热启动

热启动

作者:互联网

<!--添加热部署-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <optional>true</optional>
            <scope>true</scope>
        </dependency>
		<plugin>
                <!--热部署配置-->
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <!--fork:如果没有该项配置,整个devtools不会起作用-->
                    <fork>true</fork>
                </configuration>
            </plugin>

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

在这里插入图片描述

快捷键 ctrl + shift + alt + /,选择Registry,勾上 Compiler autoMake allow when
app running

标签:spring,boot,springframework,热启动,org,true,Compiler
来源: https://blog.csdn.net/qq_42836388/article/details/113853566