Spring boot 热部署

1.首先加入依赖,直接在pom文件中加入:


org.springframework.boot
spring-boot-devtools
provided
true

    
        org.springframework
        springloaded
        1.2.6.RELEASE
    
    

2.添加插件:




org.springframework.boot
spring-boot-maven-plugin

com.xiaomoguvip.XiaomoguvipApplication




3.IDEA设置:
1.“File” -> “Settings” -> “Build,Execution,Deplyment” -> “Compiler”,选中打勾 “Build project automatically”【自动编译class】
2.组合键:“Shift+Ctrl+Alt+/” ,选择 “Registry” ,选中打勾 “compiler.automake.allow.when.app.running” [编译后自动运行]
3.使用 mvn springboot:run运行项目。
在网上碰了好多坑,很是烦恼,为了让朋友们少走坑,写了本章,亲测可行!

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