SpringBoot 热启动配置

  • Post author:
  • Post category:其他


1、在pom.xml 文件 <dependencies></ dependencies> 添加如下内容

<!--支持热启动-->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
    <optional>true</optional>
</dependency>

2、在pom.xml 文件中修改 <build></build> 中的内容

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
            <configuration>
                <fork>true</fork>
                <addResources>true</addResources>
            </configuration>
        </plugin>
    </plugins>
</build>

3、修改设置,File > settings > Build,Execution,Deployment > Compiler 中的 Build.project.automatically 勾上

4、shift + ctrl + alt + ? 点击Regist

5、找到compiler.automake.allow.when.app.running 并勾上



版权声明:本文为weixin_40373925原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。