记一次SpringBoot热更新配置 - AcmeZhang - 博客园

1. pom.xml

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
    <optional>true</optional>
    <scope>true</scope>
</dependency>
<plugin>
    <!--热部署配置-->
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    <configuration>
        <fork>true</fork>
    </configuration>
</plugin>

2. idea配置

File -> Settings -> Compiler 勾选 √ Build Project automatically

3. Registry

  • ctrl + shift + alt + /
  • 选择Registry
  • √ Compiler autoMake allow when app running

使用效果:

检测到更新会自动重启服务,但是使用起来感觉并不是很便捷


原网址: 访问
创建于: 2022-04-13 10:23:14
目录: default
标签: 无

请先后发表评论
  • 最新评论
  • 总共0条评论