springboot热部署

添加依赖



    org.springframework.boot
    spring-boot-devtools
    true

application.yml配置

additional-paths对于多模块也有效,多模块下只要是此目录下的就会重新加载

spring:
  devtools:
    restart:
      enabled: true
      additional-paths: /src/main/java

idea设置

第一步

Preferences->Build,Execution,Deployment->Compiler找到 Build Project Automatically打勾选中

第二步

mac同时按住command+shift+alt+/,调出Maintenance(维护)控制台,选择Registry(登记)
勾选运行时自动编译(compiler.automake.allow.when.app.running)

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