spring-boot热部署失效问题

spring-boot热部署失效问题

    • 整理记录

整理记录

工作中我们会经常碰到spring-boot项目热部署失效问题,下面提供三个解决方案:

  1. pom文件添加代码
   <plugin>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
        <configuration>
            <fork>true</fork>
            <addResources>true</addResources>
        </configuration>
    </plugin>
  1. 勾选 setting-Compiler-Buid project automatically;
  2. CTRL + SHIFT + A --> 查找 Registry --> 找到并勾选 --> compiler.automake.allow.when.app.running;

你可能感兴趣的:(记录)