zoukankan      html  css  js  c++  java
  • 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就行!!

  • 相关阅读:
    JavaScript -- 条件语句和循环语句
    xpath的|
    Pythonic
    4k图片爬取+中文乱码
    xpath-房价爬取
    (.*?)实验室
    模块的循环导入
    bs4-爬取小说
    糗图-图片爬取
    re实战记录
  • 原文地址:https://www.cnblogs.com/chenyanbin/p/13234744.html
Copyright © 2011-2022 走看看