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

Spring boot 热部署

程序员文章站 2024-02-02 14:51:46
...
1、添加Maven依赖包spring-boot-devtools
<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-devtools</artifactId>
   <optional>true</optional>
</dependency>
2、配置自动当java文件改变时,build项目:
(1)在Setting->Compileer选项下,勾选“Build project automatically”

Spring boot 热部署

(2)按住快捷键Ctrl+Alt+Shift+/
Spring boot 热部署

点击1.Registry...
勾选“comiler.automake.allow.when.app.running”
Spring boot 热部署