205

昨天我从 Eclipse 切换到 IntelliJ IDEA。

我也将 JRebel 与 WebSphere Server 7 一起使用。

现在一切似乎都运行良好,除了当我修改Java 文件并点击 save时,IntelliJ不会重新编译该文件,以便让 JRebel 拾取它。

Eclipse“自动构建”特性解决了这个问题。

在 IntelliJ IDEA 中,我必须点击CTRL++重新编译相关类以供 JRebel 拾取SHIFT9如果对两个文件进行了更改,我必须对每个文件都执行此操作,并且由于 IntelliJ 使用全部保存机制,因此很难知道要手动重新编译什么,而我也不是很感兴趣。

有没有办法让 IntelliJ 自己做到这一点

4

20 回答 20

277

更新

对于 IntelliJ IDEA 12+ 版本,如果我们使用外部编译器选项,我们可以自动构建已编辑的源代码。唯一需要的是检查选项“自动构建项目”,位于“编译器”设置下:

编译器设置

此外,如果您想在应用程序运行时进行热部署,或者如果您使用的是 spring boot devtools,您也应该启用compiler.automake.allow.when.app.runningfrom registry。这将自动编译您的更改。

对于高于 2021.2 的版本,我们需要选中“即使 id 开发应用程序当前正在运行也允许自动启动”选项: 在此处输入图像描述

对于早于 2021.2 的版本:

使用Ctrl+ Shift+ A(或⌘</kbd>+Shift+A on Mac) type Registry once the registry windows is open, locate and enable compiler.automake.allow.when.app.running, see here:

在此处输入图像描述


对于 12 之前的版本,您可以使用 *EclipseMode* 插件使 IDEA 自动编译保存的文件。

有关更多提示,请参阅“从 Eclipse 迁移到 IntelliJ IDEA”指南。

于 2012-10-05T10:35:56.670 回答
80

请按照以下两个步骤操作:

1 - 从编译器启用 Automake

  • 按:ctrl+ shift+ A(对于 Mac⌘</kbd> + shift + A)
  • 类型:make project automatically
  • 打:Enter
  • 启用Make Project automatically功能

2 - 在应用程序运行时启用 Automake

  • 按:ctrl+ shift+ A(对于 Mac⌘</kbd> + shift + A)
  • 类型:Registry
  • 找到密钥compiler.automake.allow.when.app.running启用它或单击它旁边的复选框

注意:现在重新启动您的应用程序:)

注意:这也应该允许使用 spring boot devtools 实时重新加载。

于 2016-04-24T19:01:08.460 回答
68

警告

Eclipse Mode插件已过时,并且与最近的 IDEA 12+ 版本不兼容。如果您安装它,IDE 将在每次文件更改时挂起,并且响应速度极慢。


IntelliJ IDEA 不使用自动构建,它即时检测错误,而不是通过编译器。与 Eclipse 模式类似, IDEA 12将提供:

自动制作项目

使用Build| Make,它调用增量生成过程,该过程将只编译更改和依赖的文件(它非常快)。

还有一个FAQ 条目可能会有所帮助。

自动生成功能更新:运行/调试配置运行时,Make project automatically无效。磁盘上的类只会在Build| Make. 这是核心设计决策,因为我们认为磁盘上的类更改应始终在用户的控制之下。自动生成不是 Eclipse 功能的模仿者,它的工作方式不同,它的主要目的是节省等待类在真正需要时准备就绪的时间(在运行应用程序或测试之前)。自动生成不会取代您仍然需要触发的显式编译,就像在这个问题中描述的情况一样。如果您正在寻找不同的行为,上面常见问题解答中链接的 EclipseMode 插件将是更好的选择。

于 2012-10-05T10:36:06.587 回答
39

您可以通过键盘映射ctrl+s保存并一步编译。转到键盘映射设置并搜索Compile.

于 2012-12-18T22:06:33.147 回答
20

实际上没有区别,因为两者都需要单击一次:

  • Eclipse:手动保存,自动编译。
  • IntelliJ:自动保存,手动编译。

最简单的解决办法就是习惯它。因为当您将大部分时间都花在 IDE 中时,最好在其中一个中养成快速的习惯,而不是在其中几个中养成缓慢的习惯。

于 2015-03-02T08:24:54.257 回答
17

我最终录制了一个以一步保存和编译,并Ctrl+s对其进行键盘映射。

于 2013-01-23T19:15:39.697 回答
14

我设法使用宏解决了这个问题。

我开始录制宏:

  • 点击编辑-宏-开始宏录制
  • 单击文件 - 全部保存
  • 点击构建 - 制作项目
  • 点击编辑-宏-停止宏录制

将其命名为有用的名称,例如“SaveAndMake”。

现在只需删除 Save all 键绑定,并将相同的键绑定添加到您的宏!

所以现在,每次我保存时,它都会保存并进行脏编译,jRebel 现在可以正确检测所有更改。

于 2015-02-27T12:18:07.993 回答
5

请仔细按照以下步骤启用它。

1) 使用 SB V1.3 创建 Spring Boot 项目并将“Devtools”(1*) 添加到依赖项

2)调用Help->Find Action...并输入“Registry”,在对话框中搜索“automake”并启用条目“ compiler.automake.allow.when.app.running ”,关闭对话框

3) 在 Settings->Build, Execution, Deployment->Compiler "Make project automatically" 中启用后台编译

4) 打开 Spring Boot 运行配置,如果一切配置正确,您应该会收到警告消息

5) 运行您的应用程序,即时更改您的课程

请报告您的经验和问题作为对此问题的评论。

点击这里获取更多信息

于 2017-02-02T03:42:42.783 回答
2

Intellij 在其他模块遇到编译问题时安静地失败,然后不执行自动构建。所以检查你的Problems窗口

于 2017-10-23T19:56:49.610 回答
2

我有同样的问题,并且在 intellij 中还有一个问题文件图标,所以我删除.idea文件夹并重新导入项目解决了我的问题。

于 2020-05-04T05:29:44.560 回答
2

对于使用新Intellij版本但找不到的人compiler.automake.allow.when.app.running

https://youtrack.jetbrains.com/issue/IDEA-274903

基本上该选项现在已移至Settings -> Advanced Settings -> Compiler(检查允许自动制作选项)

于 2021-10-09T17:45:19.797 回答
2

在受此影响的 Maven 项目中,唯一对我有用的是在我的单元测试的运行配置中添加“测试编译”目标。非常笨拙的解决方案,但它有效。

在此处输入图像描述

于 2017-04-29T11:01:01.650 回答
1

我遇到过同样的问题。我使用的是“省电模式”,它可以防止增量编译并显示编译错误。

于 2014-12-26T21:12:36.003 回答
1

我遇到过同样的问题。我认为检查您的课程是否可以编译是合适的。单击重新编译(默认为 Ctrl+Shift+F9)。如果它不工作,那么你必须调查它为什么不编译。

在我的情况下,代码没有自动编译,因为编译时存在隐藏错误(它们没有显示在任何地方的日志中,并且 maven clean-install 正在工作)。根本原因是项目结构 -> 模块配置不正确,因此 Intellij Idea 无法根据此配置构建它。

于 2020-02-10T15:58:15.360 回答
1

使用 Reformat and Compile 插件(灵感来自 Alexandre DuBreuil 的 Save Actions 插件):

https://plugins.jetbrains.com/plugin/8231?pr=idea_ce

目前我只提供一个 jar 文件,但这是代码中最重要的部分:

private final static Set<Document> documentsToProcess = new HashSet<Document>();
private static VirtualFile[] fileToCompile = VirtualFile.EMPTY_ARRAY;

// The plugin extends FileDocumentManagerAdapter.
// beforeDocumentSaving calls reformatAndCompile
private static void reformatAndCompile(
        @NotNull final Project project,
        @NotNull final Document document,
        @NotNull final PsiFile psiFile) {
    documentsToProcess.add(document);
    if (storage.isEnabled(Action.compileFile) && isDocumentActive(project, document)) {
        fileToCompile = isFileCompilable(project, psiFile.getVirtualFile());
    }
    ApplicationManager.getApplication().invokeLater(new Runnable() {
        @Override
        public void run() {
            if (documentsToProcess.contains(document)) {
                documentsToProcess.remove(document);
                if (storage.isEnabled(Action.optimizeImports)
                        || storage.isEnabled(Action.reformatCode)) {
                    CommandProcessor.getInstance().runUndoTransparentAction(new Runnable() {
                        @Override
                        public void run() {
                            if (storage.isEnabled(Action.optimizeImports)) {
                                new OptimizeImportsProcessor(project, psiFile)
                                    .run();
                            }
                            if (storage.isEnabled(Action.reformatCode)) {
                                new ReformatCodeProcessor(
                                        project,
                                        psiFile,
                                        null,
                                        ChangeListManager
                                            .getInstance(project)
                                            .getChange(psiFile.getVirtualFile()) != null)
                                                .run();
                            }
                            ApplicationManager.getApplication().runWriteAction(new Runnable() {
                                @Override
                                public void run() {
                                    CodeInsightUtilCore.forcePsiPostprocessAndRestoreElement(psiFile);
                                }
                            });
                        }
                    });
                }
            }

            if (fileToCompile.length > 0) {
                if (documentsToProcess.isEmpty()) {
                    compileFile(project, fileToCompile);
                    fileToCompile = VirtualFile.EMPTY_ARRAY;
                }
            } else if (storage.isEnabled(Action.makeProject)) {
                if (documentsToProcess.isEmpty()) {
                    makeProject(project);
                }
            } else {
                saveFile(project, document, psiFile.getVirtualFile());
            }
        }
    }, project.getDisposed());
}

private static void makeProject(@NotNull final Project project) {
    ApplicationManager.getApplication().invokeLater(new Runnable() {
        @Override
        public void run() {
            CompilerManager.getInstance(project).make(null);
        }
    }, project.getDisposed());
}

private static void compileFile(
        @NotNull final Project project,
        @NotNull final VirtualFile[] files) {
    ApplicationManager.getApplication().invokeLater(new Runnable() {
        @Override
        public void run() {
            CompilerManager.getInstance(project).compile(files, null);
        }
    }, project.getDisposed());
}

private static void saveFile(
        @NotNull final Project project,
        @NotNull final Document document,
        @NotNull final VirtualFile file) {
    ApplicationManager.getApplication().invokeLater(new Runnable() {
        @Override
        public void run() {
            final FileDocumentManager fileDocumentManager = FileDocumentManager.getInstance();
            if (fileDocumentManager.isFileModified(file)) {
                fileDocumentManager.saveDocument(document);
            }
        }
    }, project.getDisposed());
}
于 2016-03-01T15:43:31.840 回答
1

由于我的项目结构中有一个不必要的模块,它对我不起作用。我想这些测试是使用另一个模块执行的。

我不知道它是如何结束的,但删除它解决了问题。

确保您的运行/调试设置正在使用您正在使用自动保存构建的模块。

例如:查看模块

在此处输入图像描述

您可以更改项目结构中的模块 - 模块

在此处输入图像描述

于 2019-03-12T10:24:09.043 回答
1

对于 Intellij 2021 或更高版本,您将找不到注册表项

compiler.automake.allow.when.app.running

它已移至高级设置,如下面的屏幕截图所示

IntelliJ 高级设置截图

来源:https ://youtrack.jetbrains.com/issue/IDEA-274903

于 2021-10-11T22:22:39.037 回答
1

编辑您的运行/调试配置,以便在启动之前选择构建选项

在此处输入图像描述

选择构建选项后

在此处输入图像描述

上面的解决方案在我的 JBehave 测试套件上工作时对我有用

于 2018-08-30T15:30:53.887 回答
0

我收到错误:一些 jars 不在类路径中。所以我只删除损坏的 jar 并执行以下步骤

1.Project >  Setting>Build,Execution,Deployment>Compiler>check build project automatically
2.CTRL+SHIFT+A find/search **registry** --Check for below param
compiler.automake.allow.when.app.running
compiler.automake.trigger.delay=500---According to ur requirement
3.Add devtool in pom.xml
         <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <optional>true</optional>
        </dependency>
4.Build ,If found any probelm while building ,saying some jar in not in class path.Just delete the corrupted jar
and re-build the project angain after sync with maven lib
于 2018-05-07T02:56:59.843 回答
-1

没有足够的点来评论现有的答案,但类似于上面的一些人,我最后只是添加了一个宏和键盘映射来Organize Imports / Format / SaveAll / FastReload(F9) / Synchronize

添加了同步,因为它似乎是我还可以看到由外部构建工具/观察者(即 webpack)修改的资源中的更新的唯一方法。

该过程比 Eclipse 慢 - 并且对于外部文件刷新通常必须多次运行该命令 - 但假设我可以忍受它。

于 2017-07-14T02:37:19.443 回答