spring boot 热部署

在idea中实现springboot的热部署

一、idea配置

组合键:“Ctrl+Alt+s”,选择"Compiler",选中"Build Project automatically"。
组合键:“Shift+Ctrl+Alt+/” ,选择 “Registry” ,选中打勾 "compiler.automake.allow.when.app.running" 。

二、pom文件引入依赖spring-boot-devtools

    
        org.springframework.boot
        spring-boot-devtools
        true
    

注意该依赖的位置为-

三、pom文件引入依赖springloaded

                
                    org.springframework
                    springloaded
                

注意该依赖的位置为----

你可能感兴趣的:(spring boot 热部署)