IDEA 热部署

Posted mobaids

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IDEA 热部署相关的知识,希望对你有一定的参考价值。

第一:settings => compiler => build project automatically .

第二:CTRL + SHIFT + A,输入Registry,找到并勾选compiler.automake.allow.when.app.running,直接关闭即可
第三:在项目中添加依赖

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
    <optional>true</optional>
</dependency>

第四:添加插件支持:

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

第五:配置应用文件

#开启热部署
spring.devtools.restart.enabled= true
#设置重启的目录
spring.devtools.restart.additional-paths= src/main/java
#设置文件修改不重启,相对于classpath
spring.devtools.restart.exclude= WEB-INF/**

 

以上是关于IDEA 热部署的主要内容,如果未能解决你的问题,请参考以下文章

IDEA热部署后 update classes and resource不管用?&热部署无效?:IDEA热部署注意事项

如何在idea中设置tomcat热部署

idea 热部署

IntelliJ IDEA 怎么热部署,每次修改java文件就得重启tomcat

idea调教4 ——热部署

IDEA中开启热部署