美文网首页JAVA 随笔
2020-12-05 IDEA中springboot启动热部署

2020-12-05 IDEA中springboot启动热部署

作者: 北国烟雨 | 来源:发表于2020-12-05 08:54 被阅读0次

    IDEA中springboot启动热部署

    1.开启工程自动编译

    2.  Ctrl + Shift + Alt + / 然后选择Registry,开启运行时允许自动编译

     3.项目pom文件中添加热部署依赖


    <!-- 热部署依赖 -->

    <dependency>

        <groupId>org.springframework.boot</groupId>

        <artifactId>spring-boot-devtools</artifactId>

        <!-- 将依赖关系标记为可选<optional>true</optional>,防止使用项目将devtools传递性地应用于其他模块 -->

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


    4.浏览器测试

    浏览器缓存可能有影响,可以关闭浏览器缓存

    也可以强制用CTRL+F5强制刷新浏览

    相关文章

      网友评论

        本文标题:2020-12-05 IDEA中springboot启动热部署

        本文链接:https://www.haomeiwen.com/subject/opgwwktx.html