欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

spring boot 热部署

程序员文章站 2024-02-02 12:46:58
...

第一步: 在pom.xml增加下面依赖

  1. <dependency>  
  2.      <groupId>org.springframework.boot</groupId>  
  3.      <artifactId>spring-boot-devtools</artifactId>  
  4. </dependency>  

第二步: 打开idea ,File->Settings-> Build-Execution-Deployment -> Compiler

勾选 Build Project Automatically

spring boot 热部署


第三步: 按 Shift+Ctrl+A (windows,mac是 command+shift+A) 

将看到弹窗 Enter Action or option name,输入"registry",双击第一项"Registry..." ,会弹出另一个窗口,寻找

compiler.automake.allow.when.app.running
这一项,并勾选开启。然后关闭窗口。

spring boot 热部署