SpringBoot热部署

什么是热部署

  • 应用正在运行的时候升级功能,不需要重新启动应用
  • 对于Java应用程序来说,热部署就是在运行时更新Java类文件

好处:不需要重新手工启动应用,提高本地开发效率

常见热部署

  • jrebel
  • Spring Loaded
  • spring-boot-devtools

步骤

pom文件添加依赖包

        <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>

idea配置

使用快捷键打开,选择Registry

注意默认快捷键
    window快捷键:shift+ctrl+Alt+/
    mac快捷键:shift+Command+option+/

选择compiler.automake.allow.when.app.running,重启idea就行!!

原文地址:https://www.cnblogs.com/chenyanbin/p/13234744.html