spring boot 热部署

基于Maven的SpringBoot项目,通过配置spring-boot-devtools模块来使Spring Boot应用支持热部署,无需每次更改代码都要手动项目,提高开发者的开发效率

spring boot 热部署_第1张图片

工具/原料

  • IntelliJ IDEA或eclips等开发工具

  • springboot项目

方法/步骤

  1. 在项目的pom.xml文件添加如下两段

  2.   

                org.springframework.boot  

                spring-boot-devtools

                1.5.7.RELEASE

                true  

     

    spring boot 热部署_第2张图片

  3.   

                    org.springframework.boot  

                    spring-boot-maven-plugin  

                      

                        true

                        true  

                      

     

    spring boot 热部署_第3张图片

  4. 如果使用的是Intellij IEDA开发工具,还需要到设置里将project automatically勾选上;File->Setting->Build,…->Compiler  将右侧project automatically勾上

    spring boot 热部署_第4张图片

  5. Intellij IEDA 使用ctrl+shift+a 快捷键搜索Registry,选择搜索出来的第一个

    spring boot 热部署_第5张图片

  6. 找到compiler.automake.allow.when.app.running,勾上开启此功能即可

    spring boot 热部署_第6张图片

  7. 7

    此时重新启动项目即可实现热部署,改动任意代码会立即生效,不用再每次重新启动项目

你可能感兴趣的:(转载文章)