idea 修改代码自动编译

Posted doduo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了idea 修改代码自动编译相关的知识,希望对你有一定的参考价值。

pom.xml文件修改
1.在dependencies 下添加
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
    <scope>runtime</scope>
</dependency>

2.在build > plugins > plugin 下添加
    <configuration>
        <fork>true</fork>
    </configuration>

3.file > Build,Execution,Deployment > Compiler
勾选 Build project automatically

4.Crtl+Alt+Shift+/
勾选 compiler.automake.allow.when.app.running

5.浏览器控制台[禁止缓存]
勾选 Network > Disable cache

 



 






以上是关于idea 修改代码自动编译的主要内容,如果未能解决你的问题,请参考以下文章

idea代码提示修改不了

idea 修改代码自动编译

idea中怎样对比代码修改前后

intellij idea 修改代码后自动编译更新

idea2016.2编译时有错误,代码不提示怎么办

IDEA开发SpringBoot项目开启自动编译(热部署-修改java代码时,自动重启服务器)