代码改变世界

SpringBoot spring-boot-devtools 热部署

2018-06-20 16:05  那么像你  阅读(56)  评论(0)    收藏  举报

1.在pom.xml中新增依赖

<dependency>  
            <groupId>org.springframework.boot</groupId>  
            <artifactId>spring-boot-devtools</artifactId>  
            <optional>true</optional>  
           <scope>true</scope>  
</dependency>
添加spring-boot-maven-plugin:  
<build>  
        <plugins>  
            <plugin>  
                <groupId>org.springframework.boot</groupId>  
                <artifactId>spring-boot-maven-plugin</artifactId>  
                <configuration>  
                    <!--fork :  如果没有该项配置,肯定devtools不会起作用,即应用不会restart -->  
                    <fork>true</fork>  
                </configuration>  
            </plugin>  
        </plugins>  
   </build>  

 组合键:Shift+ALT+Ctrl+/ ,选择“Registry”,回车,找到“complier.automake.allow.when.app.running”  勾上