昨天我从 Eclipse 切换到 IntelliJ IDEA。
我也将 JRebel 与 WebSphere Server 7 一起使用。
现在一切似乎都运行良好,除了当我修改 Java 文件并点击保存时,IntelliJ 不会重新编译该文件,以便 JRebel 拾取它。
Eclipse“自动构建”特性解决了这个问题。
在 IntelliJ IDEA 中,我必须按 CTRL+SHIFT+9 重新编译相关类,以便 JRebel 将其拾取。如果对两个文件进行了更改,我必须对每个文件都执行此操作,并且由于 IntelliJ 使用全部保存机制,因此很难知道要手动重新编译什么,而我也不太感兴趣。
有没有办法让 IntelliJ 自己做到这一点?
Ctrl
+F9
?这将构建整个项目,如果只有两个文件发生了变化,那么这些文件将被重建。
更新
对于 IntelliJ IDEA 12+ 版本,如果我们使用外部编译器选项,我们可以自动构建已编辑的源代码。唯一需要的是检查选项“自动构建项目”,位于“编译器”设置下:
https://i.stack.imgur.com/Wj0TX.png
此外,如果您想在应用程序运行时进行热部署,或者如果您正在使用 spring boot devtools,您也应该从注册表中启用 compiler.automake.allow.when.app.running
。这将自动编译您的更改。
https://i.stack.imgur.com/Spv3R.png
对于早于 2021.2 的版本:
使用 Ctrl+Shift+A(或 ⌘+Shift+ A 在 Mac 上)在注册表窗口打开后键入 Registry
,找到并启用 compiler.automake.allow.when.app.running
,请参见此处:
https://i.stack.imgur.com/piDMv.png
有关更多提示,请参阅 "Migrating From Eclipse to IntelliJ IDEA" 指南。
请按照以下两个步骤操作:
1 - 从编译器启用 Automake
按: ctrl + shift + A(对于 Mac ⌘ + shift + A)
类型:自动制作项目
命中:输入
启用自动生成项目功能
- 在应用程序运行时启用 Automake
按: ctrl + shift + A(对于 Mac ⌘ + shift + A)
类型:注册表
找到关键的 compiler.automake.allow.when.app.running 并启用它或单击它旁边的复选框
注意:现在重新启动您的应用程序:)
注意:这也应该允许使用 spring boot devtools 实时重新加载。
警告
Eclipse Mode 插件已过时,并且与最近的 IDEA 12+ 版本不兼容。如果您安装它,IDE 将在每次文件更改时挂起,并且响应速度极慢。
IntelliJ IDEA 不使用自动构建,它即时检测错误,而不是通过编译器。类似于 Eclipse 模式将在 IDEA 12 中提供:
https://i.stack.imgur.com/KOj6j.png
使用 Build
| Make
,它调用增量生成过程,该过程将只编译更改的和依赖的文件(它非常快)。
还有一个 FAQ entry 可能会有所帮助。
自动生成功能更新:运行/调试配置运行时,Make project automatically
无效。磁盘上的类将仅在 Build
| 上更改Make
。这是核心设计决策,因为我们认为磁盘上的类更改应始终在用户的控制之下。自动生成不是 Eclipse 功能的模仿者,它的工作方式不同,它的主要目的是节省等待类在真正需要时准备就绪的时间(在运行应用程序或测试之前)。自动生成不会取代您仍然需要触发的显式编译,就像在这个问题中描述的情况一样。如果您正在寻找不同的行为,上面常见问题解答中链接的 EclipseMode 插件将是更好的选择。
您可以对 ctrl+s
进行键盘映射以一步保存和编译。转到键盘映射设置并搜索 Compile
。
实际上没有区别,因为两者都需要单击一次:
Eclipse:手动保存,自动编译。
IntelliJ:自动保存,手动编译。
最简单的解决办法就是习惯它。因为当您将大部分时间都花在 IDE 中时,最好在其中一个中养成快速的习惯,而不是在其中几个中养成缓慢的习惯。
我最终录制了一个 宏 以在一个步骤中保存和编译,并将 Ctrl+s
映射到它。
我设法使用宏解决了这个问题。
我开始录制宏:
点击编辑-宏-开始宏录制
单击文件 - 全部保存
点击构建 - 制作项目
点击编辑-宏-停止宏录制
将其命名为有用的名称,例如“SaveAndMake”。
现在只需删除 Save all 键绑定,并将相同的键绑定添加到您的宏!
所以现在,每次我保存时,它都会保存并进行脏编译,jRebel 现在可以正确检测所有更改。
请仔细按照以下步骤启用它。
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) 运行您的应用程序,即时更改您的课程
请报告您的经验和问题作为对此问题的评论。
在受此影响的 Maven 项目中,唯一对我有用的是在我的单元测试的运行配置中添加“测试编译”目标。非常笨拙的解决方案,但它有效。
https://i.stack.imgur.com/U83X8.png
Intellij 在其他模块遇到编译问题时安静地失败,然后不执行自动构建。所以检查您的 Problems
窗口
我有同样的问题,并且在 intellij 中也有一个问题文件图标,所以 我删除了 .idea
文件夹并重新导入项目解决了我的问题。
对于使用新 Intellij
版本但找不到 compiler.automake.allow.when.app.running
的人
https://youtrack.jetbrains.com/issue/IDEA-274903
基本上,该选项现在已移至 Settings -> Advanced Settings -> Compiler
(选中 Allow auto-make 选项)
我遇到过同样的问题。我使用的是“省电模式”,它可以防止增量编译并显示编译错误。
使用 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());
}
编辑您的运行/调试配置,以便在启动之前选择构建选项
https://i.stack.imgur.com/xAfFO.png
选择构建选项后
https://i.stack.imgur.com/ATtlH.png
上面的解决方案在我的 JBehave 测试套件上工作时对我有用
由于我的项目结构中有一个不必要的模块,它对我不起作用。我想这些测试是使用另一个模块执行的。
我不知道它是如何结束的,但删除它解决了问题。
确保您的运行/调试设置正在使用您正在使用自动保存构建的模块。
例如:查看模块
https://i.stack.imgur.com/adg8R.png
您可以更改项目结构中的模块 - 模块
https://i.stack.imgur.com/glm8H.png
我遇到过同样的问题。我认为检查您的课程是否可以编译是合适的。单击重新编译(默认为 Ctrl+Shift+F9)。如果它不工作,那么你必须调查它为什么不编译。
在我的情况下,代码没有自动编译,因为编译时存在隐藏错误(它们没有显示在任何地方的日志中,并且 maven clean-install 正在工作)。根本原因是项目结构 -> 模块配置不正确,因此 Intellij Idea 无法根据此配置构建它。
对于 Intellij 2021 或更高版本,您将找不到注册表项
compiler.automake.allow.when.app.running
它已移至高级设置,如下面的屏幕截图所示
https://i.stack.imgur.com/HCZhp.png
来源:https://youtrack.jetbrains.com/issue/IDEA-274903
我收到错误:一些 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
没有足够的点来评论现有答案,但与上面的一些人类似,我最后只是添加了一个宏和键盘映射来组织导入/格式化/保存所有/快速重载(F9)/同步。
添加了同步,因为它似乎是我还可以看到由外部构建工具/观察者(即 webpack)修改的资源中的更新的唯一方法。
该过程比 Eclipse 慢 - 并且对于外部文件刷新通常必须多次运行该命令 - 但假设我可以忍受它。