Intellij idea测试编译耗时太长(与Eclipse相比)

发布于 2024-07-27 17:18:24 字数 107 浏览 2 评论 0原文

当我“junit”某个类时,Idea 中的编译大约需要 4-5 秒。 在 Eclipse 中这需要几毫秒。

我应该怎么做才能加快测试的 Intellij Idea 编译速度?

When I "junit" some class, compilation in Idea takes about 4-5 sec.
In Eclipse it takes milliseconds.

What should I do to speed up Intellij Idea compilation for tests?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

素染倾城色 2024-08-03 17:18:25

我在使用Gradle时遇到了这样的问题。 确保测试在 Idea 下运行。 设置-> 构建、执行、部署 -> 构建工具 -> 摇篮-> 使用 -> 运行测试 智能IDEA

I encountered such a problem using Gradle. Make sure that the tests run under Idea. Settings -> Build, Execution, Deployment -> Build Tools -> Gradle -> Run tests using -> IntelliJ IDEA

吃素的狼 2024-08-03 17:18:25

Eclipse 会动态编译(保存时),因此除了启动测试之外,它不需要执行任何操作。 想法没有。 在开始测试之前,它必须进行(编译整个项目的所有更改的类)。 当项目其他地方出现编译错误时,也无法在idea中启动测试。

Eclipse compiles on the fly (on save), so it does not have to do anything but to start the tests. Idea does not. Before starting the tests it has to make (compile all changed classes of the whole project). It is also not possible to start a test in idea when there is any compile error elsewhere in the project.

暗地喜欢 2024-08-03 17:18:25

Idea插件库中有一个 插件 正好解决了这个问题!

There is plugin in Idea plugin repository which solve exactly this problem!

幸福还没到 2024-08-03 17:18:25

我面前没有 IntelliJ,但可能是 IntelliJ 设置为在运行测试之前进行干净编译,其中 Eclipse 设置为执行 make (即仅编译更改的类)

只是一个想法

I don't have IntelliJ in front of me but could it be that IntelliJ is set to do a clean compile before it runs the tests where Eclipse is set to do a make (I.e only compile changed classes)

Just a thought

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文